/* site.css — extracted from index.html by build_seo_pages.py. DO NOT edit the extracted part here; edit index.html and rebuild. */
* { margin:0; padding:0; box-sizing:border-box; }
:root{
  --bg-primary:#0B1D30; --bg-secondary:#0F2B46; --bg-card:#132F4A; --bg-card-hover:#173A56;
  --accent:#00A8BB; --accent-hover:#008C9E; --accent-glow:rgba(0,168,187,0.15); --accent-light:rgba(0,168,187,0.08);
  --text-primary:#F5F7FA; --text-secondary:#94B8C8; --text-muted:#5A8A99;
  --border:#1A3A52; --border-light:#2A4F68;
  --gold:#F5C451; --gold-deep:#E0A420; --gold-glow:rgba(245,196,81,0.14); --gold-ink:#2A1E00;
  --green:#34D399;
}
body{ font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif; background:var(--bg-primary); color:var(--text-primary); line-height:1.6; -webkit-font-smoothing:antialiased; }
.container{ max-width:1120px; margin:0 auto; padding:0 24px; }
a{ color:inherit; }

/* NAV */
nav{ padding:16px 0; border-bottom:1px solid var(--border); position:sticky; top:0; background:rgba(11,29,48,0.92); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); z-index:100; }
nav .container{ display:flex; justify-content:space-between; align-items:center; }
.logo{ font-size:20px; font-weight:800; color:var(--text-primary); text-decoration:none; letter-spacing:-0.02em; }
.logo span{ color:var(--accent); }
.nav-links{ display:flex; align-items:center; gap:24px; }
.nav-link{ color:var(--text-secondary); text-decoration:none; font-size:14px; font-weight:500; transition:color .2s; }
.nav-link:hover{ color:var(--text-primary); }
.nav-cta{ background:var(--accent); color:#fff; padding:10px 20px; border-radius:8px; text-decoration:none; font-weight:700; font-size:14px; transition:all .2s; }
.nav-cta:hover{ background:var(--accent-hover); }

/* HERO — deliberately short. The prices have to be on screen almost immediately:
   Clarity measured 40.7% average scroll depth, i.e. most visitors never reached
   the old pricing block at all. */
.hero{ padding:34px 0 22px; text-align:center; background:radial-gradient(ellipse at 50% -20%, rgba(0,168,187,0.14) 0%, transparent 62%); }
.hero-badge{ display:inline-flex; align-items:center; gap:6px; background:var(--gold-glow); border:1px solid rgba(245,196,81,0.35); color:var(--gold); padding:6px 15px; border-radius:24px; font-size:12.5px; font-weight:600; margin-bottom:16px; }
.hero h1{ font-size:48px; line-height:1.07; font-weight:800; letter-spacing:-0.025em; max-width:860px; margin:0 auto 16px; }
.hero h1 .hl{ color:var(--accent); }
.hero-kicker{ font-size:19px; font-weight:600; color:var(--text-primary); max-width:680px; margin:0 auto 10px; letter-spacing:-0.01em; }
.hero p.sub{ font-size:15.5px; color:var(--text-secondary); max-width:660px; margin:0 auto 20px; }
.hero-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-primary{ background:var(--accent); color:#fff; padding:15px 30px; border-radius:10px; text-decoration:none; font-weight:700; font-size:16px; border:none; cursor:pointer; transition:all .2s; display:inline-block; }
.btn-primary:hover{ background:var(--accent-hover); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--text-primary); padding:15px 30px; border-radius:10px; text-decoration:none; font-weight:700; font-size:16px; border:1px solid var(--border-light); cursor:pointer; transition:all .2s; display:inline-block; }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }

/* Price strip: the three prices, in the hero, above the fold. The whole reason
   this page was rebuilt is that most visitors never scrolled to a price. */
.price-strip{ text-decoration:none; display:inline-flex; flex-wrap:wrap; justify-content:center; gap:0; margin:0 auto 24px; border:1px solid var(--border-light); border-radius:14px; overflow:hidden; background:var(--bg-card); }
.ps-item{ padding:13px 26px; text-decoration:none; display:flex; flex-direction:column; align-items:center; gap:2px; border-right:1px solid var(--border); transition:background .18s; }
.ps-item:last-child{ border-right:none; }
.ps-item:hover{ background:var(--bg-card-hover); }
.ps-item .psl{ font-size:11.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); }
.ps-item .psp{ font-size:22px; font-weight:800; letter-spacing:-0.02em; color:var(--text-primary); }
.ps-item.best .psl{ color:var(--gold); }
.ps-item.best .psp{ color:var(--gold); }
@media(max-width:640px){
  .price-strip{ width:100%; }
  .ps-item{ flex:1; padding:11px 8px; }
  .ps-item .psl{ font-size:10px; letter-spacing:.03em; }
  .ps-item .psp{ font-size:18px; }
}

/* PROOF BAR */
.proof{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg-secondary); }
.proof .container{ display:flex; justify-content:center; flex-wrap:wrap; gap:12px 30px; padding:16px 24px; }
.proof-item{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--text-secondary); font-weight:500; }
.proof-item .ic{ color:var(--green); font-weight:800; }

/* SECTION SHELL */
section.blk{ padding:72px 0; }
.section-label{ color:var(--accent); font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; text-align:center; }
.section-title{ font-size:36px; font-weight:800; letter-spacing:-0.02em; text-align:center; margin-bottom:12px; }
.section-subtitle{ font-size:17px; color:var(--text-secondary); text-align:center; max-width:660px; margin:0 auto 8px; }

/* ================= PRICING — THREE CARDS ================= */
.pricing-wrap{ padding:38px 0 76px; background:linear-gradient(180deg, rgba(0,168,187,0.05), transparent 55%); }
.price-grid{ display:grid; grid-template-columns:1fr 1fr 1.16fr; gap:20px; margin-top:40px; align-items:stretch; }
.pcard{ background:var(--bg-card); border:1px solid var(--border-light); border-radius:18px; padding:30px 26px; display:flex; flex-direction:column; position:relative; transition:border-color .2s, transform .2s; }
.pcard:hover{ border-color:var(--accent); transform:translateY(-2px); }
.pcard.hero-card{ border:1.5px solid var(--gold); background:linear-gradient(180deg, var(--gold-glow), var(--bg-card) 58%); box-shadow:0 28px 70px rgba(0,0,0,0.42); }
.pcard.hero-card:hover{ border-color:var(--gold); }
.pbadge{ position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--gold-ink); font-size:11px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; padding:6px 15px; border-radius:20px; white-space:nowrap; }
.pname{ font-size:14px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--accent); margin-bottom:6px; }
.pcard.hero-card .pname{ color:var(--gold); }
.pwhat{ font-size:14.5px; color:var(--text-secondary); min-height:44px; margin-bottom:16px; line-height:1.5; }
.pprice{ font-size:50px; font-weight:800; letter-spacing:-0.025em; line-height:1; }
.pprice .cur{ font-size:26px; vertical-align:top; color:var(--text-secondary); margin-right:2px; }
.ponce{ font-size:13px; color:var(--text-muted); margin-top:7px; }
.pcount{ font-size:15px; font-weight:700; color:var(--text-primary); margin:16px 0 4px; }
.pcount b{ color:var(--accent); }
.pcard.hero-card .pcount b{ color:var(--gold); }
.pper{ font-size:13px; color:var(--text-muted); margin-bottom:18px; }
.pper b{ color:var(--text-secondary); }
.ppick{ margin-bottom:16px; }
.ppick label{ font-size:12px; color:var(--text-muted); font-weight:600; display:block; margin-bottom:6px; }
select.picker{ width:100%; background:var(--bg-primary); border:1.5px solid var(--border-light); color:var(--text-primary); padding:11px 12px; border-radius:10px; font-size:15px; font-family:inherit; cursor:pointer; }
select.picker:focus{ outline:none; border-color:var(--accent); }
.pfeats{ list-style:none; margin:0 0 22px; padding-top:16px; border-top:1px solid var(--border); }
.pfeats li{ font-size:13.5px; color:var(--text-secondary); margin-bottom:9px; padding-left:23px; position:relative; line-height:1.45; }
.pfeats li::before{ content:"\2713"; position:absolute; left:0; color:var(--green); font-weight:800; }
.pbuy{ width:100%; background:var(--accent); color:#fff; border:none; padding:16px; border-radius:12px; font-size:16px; font-weight:800; cursor:pointer; transition:all .18s; font-family:inherit; margin-top:auto; }
.pbuy:hover{ background:var(--accent-hover); transform:translateY(-1px); }
.pcard.hero-card .pbuy{ background:var(--gold); color:var(--gold-ink); }
.pcard.hero-card .pbuy:hover{ background:var(--gold-deep); }
.pfoot{ text-align:center; font-size:12px; color:var(--text-muted); margin-top:10px; }
.pnudge{ background:var(--accent-light); border:1px solid rgba(0,168,187,0.28); border-radius:10px; padding:11px 13px; font-size:12.5px; color:var(--text-secondary); line-height:1.5; margin-bottom:16px; display:none; }
.pnudge.show{ display:block; }
.pnudge b{ color:var(--text-primary); }
.price-foot{ text-align:center; margin-top:34px; font-size:15px; color:var(--text-secondary); }
.price-foot b{ color:var(--text-primary); }
.price-reassure{ display:flex; justify-content:center; gap:30px; flex-wrap:wrap; margin-top:22px; font-size:13.5px; color:var(--text-muted); }
.price-reassure span{ display:inline-flex; align-items:center; gap:7px; }
.price-reassure .ic{ color:var(--green); font-weight:800; }

/* ===== GUARANTEE =====
   Replacement or credit, never cash. A data file cannot be un-downloaded, so a
   money-back promise on one is just a free copy for anyone who asks. The remedy
   is more data, and it needs the buyer's own bounce export to trigger. */
.guar-band{ background:var(--bg-secondary); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.guar-card{ background:linear-gradient(135deg, rgba(52,211,153,0.09), rgba(19,47,74,0.62)); border:1px solid rgba(52,211,153,0.30); border-radius:20px; padding:40px 44px; }
.guar-top{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:14px; }
.guar-tag{ background:var(--green); color:#04220f; font-weight:800; font-size:12px; letter-spacing:.05em; text-transform:uppercase; padding:6px 14px; border-radius:20px; }
.guar-sub{ font-size:13px; color:var(--green); font-weight:600; }
.guar-card h3{ font-size:28px; letter-spacing:-0.022em; margin-bottom:12px; line-height:1.2; }
.guar-card > p.gl{ color:var(--text-secondary); max-width:770px; margin-bottom:28px; font-size:15.5px; }
.guar-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:26px; }
.guar-step{ background:rgba(11,29,48,0.55); border:1px solid var(--border); border-radius:13px; padding:22px; }
.guar-step .gn{ width:26px; height:26px; border-radius:50%; background:var(--green); color:#04220f; font-weight:800; font-size:13px; display:inline-flex; align-items:center; justify-content:center; margin-bottom:12px; }
.guar-step h4{ font-size:16px; margin-bottom:7px; }
.guar-step p{ font-size:13.5px; color:var(--text-secondary); line-height:1.55; }
.guar-step p b{ color:var(--text-primary); }
.guar-fine{ border-top:1px dashed var(--border-light); padding-top:20px; font-size:13.5px; color:var(--text-muted); line-height:1.7; }
.guar-fine b{ color:var(--text-secondary); }
@media(max-width:900px){ .guar-grid{ grid-template-columns:1fr; } .guar-card{ padding:30px 24px; } }
@media(max-width:640px){ .guar-card h3{ font-size:22px; } .guar-card > p.gl{ font-size:14.5px; } }

/* ================= VALUE / ANCHOR ================= */
.anchor-band{ background:var(--bg-secondary); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.anchor-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:44px; align-items:center; }
.anchor-copy h2{ font-size:33px; font-weight:800; letter-spacing:-0.02em; line-height:1.15; margin-bottom:16px; }
.anchor-copy h2 .hl{ color:var(--accent); }
.anchor-copy p{ color:var(--text-secondary); font-size:16px; margin-bottom:14px; }
.anchor-copy p b{ color:var(--text-primary); }
.math-card{ background:var(--bg-card); border:1px solid var(--border-light); border-radius:16px; padding:28px; }
.math-row{ display:flex; justify-content:space-between; align-items:baseline; gap:14px; padding:13px 0; border-bottom:1px solid var(--border); font-size:14.5px; color:var(--text-secondary); }
.math-row:last-of-type{ border-bottom:none; }
.math-row .mv{ font-weight:800; color:var(--text-primary); white-space:nowrap; }
.math-row.win{ color:var(--text-primary); }
.math-row.win .mv{ color:var(--gold); font-size:17px; }
.math-note{ font-size:12.5px; color:var(--text-muted); margin-top:14px; line-height:1.55; padding-top:14px; border-top:1px dashed var(--border-light); }

/* ================= ROW PREVIEW ================= */
.rowprev{ margin-top:36px; border:1px solid var(--border-light); border-radius:14px; overflow:hidden; background:var(--bg-card); }
.rowprev-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
table.prev{ border-collapse:collapse; width:100%; min-width:940px; font-size:13px; }
table.prev th{ background:var(--bg-secondary); color:var(--text-primary); font-weight:700; text-align:left; padding:12px 14px; white-space:nowrap; border-bottom:1px solid var(--border-light); font-size:12px; letter-spacing:.02em; }
table.prev td{ padding:11px 14px; color:var(--text-secondary); white-space:nowrap; border-bottom:1px solid var(--border); }
table.prev tr:last-child td{ border-bottom:none; }
table.prev tr:nth-child(even) td{ background:rgba(11,29,48,0.4); }
table.prev td.ok{ color:var(--green); font-weight:600; }
.rowprev-cap{ text-align:center; font-size:13px; color:var(--text-muted); margin-top:14px; }
.rowprev-hint{ text-align:right; font-size:11.5px; color:var(--text-muted); letter-spacing:.04em; text-transform:uppercase; font-weight:700; padding:8px 14px 0; }
.rowprev-cap b{ color:var(--text-secondary); }

/* IMPACT BAND */
.impact-band{ background:radial-gradient(ellipse at 50% 40%, rgba(0,168,187,0.10), transparent 68%); text-align:center; padding:96px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.impact-title{ font-size:56px; font-weight:800; letter-spacing:-0.03em; line-height:1.04; margin-bottom:22px; }
.impact-title .hl{ color:var(--accent); }
.impact-sub{ font-size:19px; color:var(--text-secondary); max-width:700px; margin:0 auto; line-height:1.6; }

/* COVERAGE / TRUST */
.cov-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:36px; }
.cov-card{ background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:24px; text-align:center; }
.cov-card .n{ font-size:32px; font-weight:800; color:var(--accent); }
.cov-card .l{ font-size:14px; color:var(--text-secondary); margin-top:4px; }
.cov-note{ text-align:center; color:var(--text-muted); font-size:13px; margin-top:22px; max-width:820px; margin-left:auto; margin-right:auto; line-height:1.65; }

/* INCLUDED */
.inc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
.inc-card{ background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:26px; }
.inc-card .ic{ margin-bottom:14px; color:var(--accent); display:inline-flex; }
.inc-card .ic svg{ width:30px; height:30px; }
.inc-card h4{ font-size:17px; margin-bottom:7px; }
.inc-card p{ font-size:14px; color:var(--text-secondary); }

/* FAQ */
.faq-list{ max-width:820px; margin:36px auto 0; }
.faq-item{ border-bottom:1px solid var(--border); padding:20px 0; }
.faq-q{ font-size:16px; font-weight:700; cursor:pointer; display:flex; justify-content:space-between; gap:16px; }
.faq-q .x{ color:var(--accent); }
.faq-a{ font-size:14px; color:var(--text-secondary); margin-top:12px; display:none; }
.faq-item.open .faq-a{ display:block; }

/* CONTACT / SAMPLE */
.sample-box{ background:var(--bg-card); border:1px solid var(--border-light); border-radius:18px; padding:44px; text-align:center; max-width:660px; margin:0 auto; }
.sample-box h3{ font-size:26px; margin-bottom:10px; }
.sample-box p{ color:var(--text-secondary); margin-bottom:22px; }
.sample-form{ display:flex; gap:10px; max-width:460px; margin:0 auto; flex-wrap:wrap; }
.sample-input{ flex:1; min-width:200px; background:var(--bg-primary); border:1.5px solid var(--border-light); color:var(--text-primary); padding:14px; border-radius:10px; font-size:15px; font-family:inherit; }

footer{ border-top:1px solid var(--border); padding:30px 0; text-align:center; color:var(--text-muted); font-size:13px; }

/* FLOATING CONTACT BUTTON */
.contact-fab{ position:fixed; bottom:22px; right:22px; background:var(--accent); color:#fff; padding:13px 20px; border-radius:30px; font-weight:700; font-size:14px; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,0.45); z-index:200; display:inline-flex; align-items:center; gap:8px; transition:all .2s; }
.contact-fab:hover{ background:var(--accent-hover); transform:translateY(-2px); }

/* ===== FOUNDER / BOOK A CALL ===== */
.founder-band{ background:linear-gradient(135deg, rgba(0,168,187,0.10), rgba(19,47,74,0.65)); border:1px solid rgba(0,168,187,0.3); border-radius:20px; padding:40px 44px; display:flex; gap:30px; align-items:center; flex-wrap:wrap; justify-content:space-between; }
.founder-copy{ flex:1; min-width:280px; }
.founder-tag{ display:inline-block; background:var(--accent-light); color:var(--accent); font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:5px 12px; border-radius:20px; margin-bottom:14px; }
.founder-band h3{ font-size:25px; letter-spacing:-0.02em; margin-bottom:10px; }
.founder-band p{ color:var(--text-secondary); font-size:15px; max-width:560px; }
.founder-band p b{ color:var(--text-primary); }
.founder-actions{ display:flex; flex-direction:column; gap:10px; min-width:230px; }
.founder-actions .book-call{ background:var(--accent); color:#fff; padding:15px 26px; border-radius:11px; text-decoration:none; font-weight:800; font-size:16px; text-align:center; transition:all .18s; cursor:pointer; }
.founder-actions .book-call:hover{ background:var(--accent-hover); transform:translateY(-1px); }
.founder-actions .book-email{ text-align:center; color:var(--text-secondary); font-size:13px; text-decoration:none; }
.founder-actions .book-email:hover{ color:var(--accent); }

@media(max-width:980px){
  .price-grid{ grid-template-columns:1fr; max-width:520px; margin-left:auto; margin-right:auto; }
  .pcard.hero-card{ order:-1; }
  .anchor-grid{ grid-template-columns:1fr; gap:30px; }
}
@media(max-width:900px){
  section.blk{ padding:56px 0; }
  .cov-grid{ grid-template-columns:repeat(2,1fr); }
  .inc-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:42px; }
  .founder-band{ padding:30px 24px; }
  .founder-actions{ width:100%; }
}
@media(max-width:640px){
  .container{ padding:0 18px; }
  nav{ padding:13px 0; }
  .nav-links{ gap:12px; }
  .nav-links .nav-link{ display:none; }
  .nav-cta{ padding:9px 16px; }
  .hero{ padding:38px 0 26px; }
  .hero-badge{ font-size:12px; margin-bottom:18px; }
  .hero h1{ font-size:31px; line-height:1.14; }
  .hero-kicker{ font-size:16px; }
  .hero p.sub{ font-size:15px; margin-bottom:22px; }
  .hero-ctas{ flex-direction:column; }
  .hero-ctas a{ width:100%; text-align:center; }
  .proof .container{ gap:9px 18px; padding:14px 18px; }
  .proof-item{ font-size:13px; }
  section.blk{ padding:48px 0; }
  .pricing-wrap{ padding:40px 0 56px; }
  .section-title{ font-size:26px; }
  .section-subtitle{ font-size:15px; }
  .pcard{ padding:26px 20px; }
  .pprice{ font-size:42px; }
  .pwhat{ min-height:0; }
  .price-reassure{ gap:10px 20px; }
  .anchor-copy h2{ font-size:25px; }
  .math-card{ padding:22px 18px; }
  .cov-grid{ gap:12px; }
  .cov-card{ padding:18px; }
  .cov-card .n{ font-size:26px; }
  .impact-band{ padding:60px 0; }
  .impact-title{ font-size:34px; }
  .impact-sub{ font-size:16px; }
  .sample-box{ padding:30px 20px; }
  .sample-form{ flex-direction:column; }
  .sample-input,.sample-form .btn-primary{ width:100%; }
  .contact-fab{ bottom:16px; right:16px; padding:11px 16px; font-size:13px; }
}
@media(max-width:380px){
  .hero h1{ font-size:27px; }
  .pprice{ font-size:38px; }
}

/* ===== SEO subpages (.pg-) — appended by build_seo_pages.py, do not edit by hand ===== */
.pg-guar{ font-size:12.5px; color:var(--text-muted); margin-top:8px; line-height:1.5; }
.pg-guar a{ color:var(--accent); font-weight:600; text-decoration:none; }
.pg-guar a:hover{ text-decoration:underline; }
.pg-hero{ padding:56px 0 44px; text-align:center; background:radial-gradient(ellipse at 50% -20%, rgba(0,168,187,0.14) 0%, transparent 62%); }
.pg-crumb{ font-size:13px; color:var(--text-muted); margin-bottom:20px; }
.pg-crumb a{ color:var(--text-muted); text-decoration:none; }
.pg-crumb a:hover{ color:var(--accent); }
.pg-crumb .sep{ margin:0 7px; color:var(--border-light); }
.pg-hero h1{ font-size:42px; line-height:1.1; font-weight:800; letter-spacing:-0.025em; max-width:880px; margin:0 auto 18px; overflow-wrap:anywhere; }
.pg-sub{ font-size:18px; color:var(--text-secondary); max-width:680px; margin:0 auto; }
.pg-hero .cov-grid{ margin-top:38px; }
.pg-tgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:34px; }
.pg-titem{ display:flex; justify-content:space-between; align-items:center; gap:12px; background:var(--bg-card); border:1px solid var(--border); border-radius:12px; padding:15px 18px; text-decoration:none; color:var(--text-primary); font-weight:600; font-size:15px; min-height:44px; transition:all .2s; }
.pg-titem .t{ min-width:0; overflow-wrap:anywhere; text-align:left; }
.pg-titem .n{ color:var(--accent); font-weight:800; white-space:nowrap; }
a.pg-titem:hover{ border-color:var(--accent); background:var(--bg-card-hover); }
a.pg-titem:hover .t{ color:var(--accent); }
.pg-lic{ text-align:center; font-size:14px; color:var(--text-muted); max-width:680px; margin:20px auto 0; }
.pg-buy{ background:linear-gradient(180deg, var(--accent-light), var(--bg-card)); border:1.5px solid var(--accent); border-radius:18px; padding:42px 40px; max-width:640px; margin:38px auto 0; text-align:center; box-shadow:0 20px 60px rgba(0,0,0,0.35); }
.pg-buy h3{ font-size:26px; margin-bottom:12px; }
.pg-buy p{ color:var(--text-secondary); margin-bottom:8px; font-size:15px; line-height:1.6; }
.pg-price{ font-size:46px; font-weight:800; color:var(--text-primary); margin:14px 0 20px; }
.pg-price .per{ font-size:15px; font-weight:600; color:var(--text-muted); }
.pg-was{ font-size:17px; font-weight:700; color:var(--text-muted); text-decoration:line-through; margin-top:14px; }
.pg-was + .pg-price{ margin-top:2px; }
.pg-save{ display:inline-block; background:var(--gold-glow); color:var(--gold); font-size:13px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; padding:5px 11px; border-radius:20px; margin-left:10px; vertical-align:10px; }
.pg-trust{ font-size:13px; color:var(--text-muted); margin-top:14px; }
.pg-lock{ display:inline-flex; align-items:center; gap:6px; background:var(--gold-glow); color:var(--gold); font-size:12px; font-weight:700; padding:5px 11px; border-radius:20px; margin-top:10px; }
.pg-upsell{ background:linear-gradient(135deg, rgba(245,196,81,0.10), rgba(19,47,74,0.6)); border:1px solid rgba(245,196,81,0.28); border-radius:14px; padding:22px 26px; max-width:760px; margin:30px auto 0; display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:15px; color:var(--text-secondary); text-align:left; }
.pg-upsell b{ color:var(--text-primary); }
.pg-upsell .vd{ color:var(--gold); }
.pg-upsell a{ color:var(--gold); font-weight:700; text-decoration:none; white-space:nowrap; }
.pg-upsell a:hover{ text-decoration:underline; }
.pg-linkrow{ margin-top:30px; text-align:center; font-size:15px; }
.pg-linkrow a{ color:var(--accent); font-weight:600; text-decoration:none; margin:0 12px; display:inline-block; padding:4px 0; }
.pg-linkrow a:hover{ text-decoration:underline; }
.pg-hubgroup{ margin-top:44px; }
.pg-hubgroup h3{ font-size:20px; font-weight:800; margin-bottom:6px; }
.pg-hubgroup .pg-hubsub{ font-size:14px; color:var(--text-secondary); margin-bottom:14px; }
.pg-hubgroup .pg-hubsub a{ color:var(--accent); text-decoration:none; font-weight:600; }
.pg-hubgroup .pg-hubsub a:hover{ text-decoration:underline; }
@media(max-width:900px){
  .pg-tgrid{ grid-template-columns:repeat(2,1fr); }
  .pg-hero h1{ font-size:34px; }
}
@media(max-width:640px){
  .pg-hero{ padding:40px 0 32px; }
  .pg-hero h1{ font-size:27px; }
  .pg-sub{ font-size:15px; }
  .pg-tgrid{ grid-template-columns:1fr; }
  .pg-buy{ padding:30px 20px; }
  .pg-buy .btn-primary{ display:block; width:100%; }
  .pg-price{ font-size:38px; }
  .pg-upsell{ flex-direction:column; text-align:center; }
  .pg-upsell a{ white-space:normal; }
  .pg-linkrow a{ display:block; margin:6px 0; }
}
@media(max-width:380px){
  .pg-hero h1{ font-size:23px; }
  .pg-titem{ font-size:14px; padding:13px 14px; }
}
