* { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --primary: #ea580c;
    --primary-dark: #c2410c;
    --accent: #1a1a1a;
    --accent-dark: #000;
    --dark: #111111;
    --dark2: #1f1f1f;
    --text: #3d3d3d;
    --muted: #6b7280;
    --light: #fdf8f5;
    --border: #ede8e3;
    --green: #16a34a;
    --red: #dc2626;
    --hero-bg: #fff5f0;
    --font-head: 'Sora', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
  }
  body { font-family: var(--font-body); color: #94a3b8; background: #0d1117; line-height: 1.6; }
  a { text-decoration: none; color: inherit; }

  /* ANNOUNCEMENT BAR */
  .announce-bar {
    background: #111111; color: #fff; text-align: center;
    padding: 10px 20px; font-size: 14px; font-weight: 500;
  }
  .announce-bar strong { color: #fb923c; }
  .announce-bar a { color: #fb923c; text-decoration: underline; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13,17,23,0.95);
    border-bottom: 1px solid #1e293b;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 60px;
    backdrop-filter: blur(12px);
  }
  .nav-inner { max-width: 900px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #f1f5f9; display: flex; align-items: center; gap: 8px; letter-spacing: -0.3px; }
  .nav-logo span { color: var(--primary); }
  .nav-links { display: flex; gap: 28px; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: #64748b; letter-spacing: 0.1px; }
  .nav-links a:hover { color: var(--primary); }
  .nav-back { font-size: 14px; font-weight: 600; color: #64748b; transition: color 0.2s; white-space: nowrap; }
  .nav-back:hover { color: #f1f5f9; }
  .nav-cta { background: var(--primary); color: #fff; padding: 9px 22px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: all 0.2s; box-shadow: 0 4px 12px rgba(234,88,12,0.3); }
  .nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

  /* HERO */
  .hero { background: #0d1117; padding: 72px 40px 56px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(234,88,12,0.12) 0%, transparent 70%); pointer-events: none; }
  .hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .hero-left { text-align: left; }
  .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(234,88,12,0.15); color: #fb923c; border: 1px solid rgba(234,88,12,0.3); padding: 7px 16px; border-radius: 100px; font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.2px; }
  .hero h1 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 50px); font-weight: 800; color: #f1f5f9; line-height: 1.12; margin: 0 0 18px; letter-spacing: -1.5px; }
  .hero h1 em { font-style: normal; background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero p { font-family: var(--font-body); font-size: 17px; color: #64748b; margin: 0 0 32px; line-height: 1.75; font-weight: 400; max-width: 480px; text-wrap: balance; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
  .hero-checks { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #475569; }
  .hero-checks span::before { content: "✓ "; color: #22c55e; font-weight: 700; }

  /* DEMO CARD — before/after correction */
  .demo-card { background: #0d1a2d; border-radius: 18px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06); }
  .demo-chrome { background: #122039; padding: 11px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .demo-dots { display: flex; gap: 6px; flex-shrink: 0; }
  .ddot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
  .demo-url { flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px; padding: 5px 12px; font-size: 12px; color: #64748b; text-align: center; }
  .demo-badge { background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
  .demo-body { padding: 20px 20px 16px; background: #0a1628; }
  .demo-textbox { background: #122039; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; margin-bottom: 12px; font-size: 12.5px; line-height: 1.6; }
  .demo-textbox .label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #475569; margin-bottom: 6px; }
  .demo-textbox.before .label { color: #f87171; }
  .demo-textbox.after { border-color: rgba(234,88,12,0.35); background: rgba(234,88,12,0.06); }
  .demo-textbox.after .label { color: #fb923c; }
  .demo-textbox del { color: #64748b; text-decoration: line-through; }
  .demo-textbox ins { color: #fb923c; text-decoration: none; font-weight: 600; }
  .demo-feats { padding: 4px 4px 4px; }
  .demo-feat { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 10px; margin: 3px 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; }
  .demo-feat:hover { background: rgba(255,255,255,0.06); }
  .df-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .demo-feat strong { font-size: 14px; color: #e2e8f0; font-weight: 600; flex: 1; }
  .df-right { font-size: 12px; color: #475569; }
  .hero-right { position: relative; }

  .hero-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; max-width: 1160px; margin: 48px auto 0; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.06); }
  @media(max-width:900px){ .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-left { text-align: center; } .hero p { max-width: 100%; } .hero-btns { justify-content: center; } .hero-checks { justify-content: center; } }

  .btn-primary { background: var(--primary); color: #fff; padding: 14px 30px; border-radius: 100px; font-size: 16px; font-weight: 700; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 4px 20px rgba(234,88,12,0.4); position: relative; overflow: hidden; }
  .btn-primary::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.18) 0%,transparent 60%); opacity:0; transition:opacity 0.2s; }
  .btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(234,88,12,0.55); }
  .btn-primary:hover::after { opacity: 1; }
  .btn-outline { background: rgba(255,255,255,0.07); color: #f1f5f9; border: 2px solid rgba(255,255,255,0.18); padding: 12px 30px; border-radius: 100px; font-size: 16px; font-weight: 600; transition: all 0.2s; }
  .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

  .hero-stats { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(37,99,235,0.15); }
  .stat-item { text-align: center; }
  .stat-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
  .stat-label { font-family: var(--font-body); font-size: 13px; color: #475569; margin-top: 4px; font-weight: 500; }

  section { padding: 80px 24px; }
  .container { max-width: 900px; margin: 0 auto; }
  .section-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #f1f5f9; margin-bottom: 14px; letter-spacing: -0.8px; line-height: 1.2; }
  .section-sub { font-family: var(--font-body); font-size: 17px; color: #64748b; margin-bottom: 48px; line-height: 1.75; font-weight: 400; max-width: 600px; text-wrap: balance; }
  .section-sub.center { margin-left: auto; margin-right: auto; }

  /* AGGREGATE RATING (replaces fabricated testimonials) */
  .rating-summary { background: #0a0f1a; }
  .rs-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; }
  @media(max-width:700px){ .rs-grid { grid-template-columns: 1fr; text-align: center; } }
  .rs-score-box { text-align: center; }
  .rs-score { font-family: var(--font-head); font-size: 64px; font-weight: 900; color: #f1f5f9; line-height: 1; letter-spacing: -3px; }
  .rs-stars { color: #f59e0b; font-size: 22px; margin: 6px 0 4px; }
  .rs-source { font-size: 13px; color: #64748b; }
  .rs-points { display: flex; flex-direction: column; gap: 10px; }
  .rs-point { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #94a3b8; line-height: 1.6; }
  .rs-point::before { content: "✓"; color: #22c55e; font-weight: 800; flex-shrink: 0; }
  .rs-point.con::before { content: "!"; color: #f59e0b; }

  .deal-section { background: #111111; color: #fff; text-align: center; }
  .deal-badge { display: inline-block; background: var(--accent); color: #fff; padding: 5px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
  .deal-section h2 { font-family: var(--font-head); font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.8px; }
  .deal-section p { color: #94a3b8; margin-bottom: 32px; font-size: 16px; }
  .deal-box { background: var(--dark2); border: 1px solid #334155; border-radius: 16px; padding: 32px; max-width: 440px; margin: 0 auto 24px; }
  .deal-plan-name { font-size: 13px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
  .deal-price-old { font-size: 18px; color: #475569; text-decoration: line-through; margin-bottom: 4px; }
  .deal-price-new { font-size: 44px; font-weight: 900; color: #fff; }
  .deal-price-new span { font-size: 20px; }
  .deal-price-sub { font-size: 14px; color: #f97316; margin-bottom: 20px; font-weight: 600; }
  .deal-features { text-align: left; margin-bottom: 24px; }
  .deal-features li { list-style: none; padding: 6px 0; font-size: 14px; color: #cbd5e1; }
  .deal-features li::before { content: "✓ "; color: #22c55e; font-weight: 700; }
  .btn-deal { display: block; width: 100%; background: #0d1117; color: #fff; padding: 15px; border-radius: 100px; font-size: 16px; font-weight: 700; text-align: center; transition: all 0.2s; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
  .btn-deal:hover { background: #000; transform: translateY(-1px); }
  .deal-note { font-size: 13px; color: #64748b; margin-top: 16px; }

  .review-table { width: 100%; border-collapse: collapse; margin-bottom: 36px; }
  .review-table td { padding: 12px 16px; border: 1px solid #1e293b; font-size: 14px; color: #94a3b8; }
  .review-table td:first-child { font-weight: 600; color: #cbd5e1; background: #161b22; width: 35%; }
  .features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
  @media(max-width:600px){ .features-list { grid-template-columns: 1fr; } }
  .feature-item { display: flex; gap: 10px; align-items: flex-start; padding: 14px; background: #161b22; border-radius: 10px; border: 1px solid #1e293b; }
  .feature-icon { font-size: 20px; flex-shrink: 0; }
  .feature-title { font-size: 14px; font-weight: 600; color: #e2e8f0; margin-bottom: 3px; }
  .feature-desc { font-size: 13px; color: #64748b; line-height: 1.5; }

  .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; align-items: start; }
  @media(max-width:600px){ .pros-cons { grid-template-columns: 1fr; } }
  .pros-box, .cons-box { padding: 20px; border-radius: 12px; }
  .pros-box { background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2); }
  .cons-box { background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.18); }
  .pros-box h4 { color: #4ade80; font-size: 15px; margin-bottom: 12px; }
  .cons-box h4 { color: #f87171; font-size: 15px; margin-bottom: 12px; }
  .pros-box li, .cons-box li { list-style: none; font-size: 13px; padding: 4px 0; line-height: 1.5; color: #94a3b8; }
  .pros-box li::before { content: "✓ "; color: #4ade80; font-weight: 700; }
  .cons-box li::before { content: "✕ "; color: #f87171; font-weight: 700; }

  .verdict-box { background: rgba(234,88,12,0.08); border: 1px solid rgba(234,88,12,0.2); border-radius: 14px; padding: 24px; margin-bottom: 28px; }
  .verdict-box h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #fb923c; margin-bottom: 10px; letter-spacing: -0.2px; }
  .verdict-box p { font-family: var(--font-body); font-size: 15px; color: #94a3b8; line-height: 1.75; }

  /* LEAD MAGNET */
  .lead-magnet { background: #0a0f1a; padding: 48px 24px; text-align: center; }
  .lead-card { background: #161b22; max-width: 860px; margin: 0 auto; border-radius: 24px; padding: 36px 52px 32px; box-shadow: 0 8px 40px rgba(234,88,12,0.1); border: 1px solid #30363d; position: relative; overflow: hidden; }
  .lead-card-deco { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #ea580c, #f97316, #fb923c); border-radius: 24px 24px 0 0; }
  .lead-badge { display: inline-block; background: rgba(234,88,12,0.08); color: var(--primary); border: 1px solid rgba(234,88,12,0.2); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase; }
  .lead-card h2 { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 26px); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; color: #f1f5f9; line-height: 1.25; }
  .lead-card h2 em { font-style: normal; color: var(--primary); }
  .lead-card > p { color: #64748b; font-size: 14px; margin-bottom: 16px; }
  .lead-perks { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
  .lead-perks span { font-size: 13px; color: #64748b; font-weight: 500; background: #0d1117; border: 1px solid #1e293b; padding: 6px 14px; border-radius: 100px; }
  .lead-form { display: flex; gap: 10px; margin: 0 auto 14px; flex-wrap: wrap; justify-content: center; }
  .lead-form input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 100px; border: 1.5px solid #30363d; background: #0d1117; color: #e2e8f0; font-size: 15px; outline: none; }
  .lead-form input::placeholder { color: #475569; }
  .lead-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(234,88,12,0.1); }
  .btn-lead { background: var(--primary); color: #fff; padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; box-shadow: 0 4px 16px rgba(234,88,12,0.35); }
  .btn-lead:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,88,12,0.4); }
  .lead-privacy { font-size: 12px; color: #94a3b8; margin-top: 4px; }
  .lead-success { display: none; color: #16a34a; font-size: 16px; font-weight: 600; margin-top: 16px; }

  /* PRICING */
  .pricing { background: #0a0f1a; }
  .pricing-toggle { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; background: #161b22; border-radius: 10px; padding: 4px; width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid #30363d; }
  .toggle-btn { padding: 8px 18px; border-radius: 7px; font-size: 13.5px; font-weight: 600; cursor: pointer; border: none; background: transparent; color: #64748b; transition: all 0.2s; }
  .toggle-btn.active { background: #1e293b; color: #f1f5f9; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
  .save-badge { background: #dcfce7; color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
  .plan-card { background: #161b22; border-radius: 16px; padding: 28px 24px; border: 2px solid #30363d; position: relative; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
  .plan-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .plan-card.popular { border-color: #ea580c; box-shadow: 0 4px 20px rgba(234,88,12,0.25); }
  .popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ea580c; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: 0.5px; white-space: nowrap; }
  .plan-name { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
  .plan-price { margin-bottom: 6px; }
  .plan-price .amount { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: #f1f5f9; letter-spacing: -2px; }
  .plan-price .period { font-size: 14px; color: #64748b; font-weight: 500; }
  .plan-billing { font-size: 12px; color: #64748b; margin-bottom: 20px; }
  .plan-discount { font-size: 13px; font-weight: 600; color: #fb923c; margin-bottom: 20px; }
  .plan-features { list-style: none; margin-bottom: 24px; flex: 1; }
  .plan-features li { padding: 6px 0; font-size: 13px; color: #94a3b8; border-bottom: 1px solid #1e293b; }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li.yes::before { content: "✓ "; color: var(--green); font-weight: 700; }
  .plan-features li.no { color: #475569; }
  .plan-features li.no::before { content: "— "; color: #30363d; }
  .btn-plan { display: block; width: 100%; text-align: center; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; }
  .btn-plan-primary { background: var(--primary); color: #fff; box-shadow: 0 3px 10px rgba(234,88,12,0.3); position: relative; overflow: hidden; }
  .btn-plan-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%); opacity: 0; transition: opacity 0.2s; }
  .btn-plan-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(234,88,12,0.5); }
  .btn-plan-primary:hover::after { opacity: 1; }
  .btn-plan-outline { background: transparent; color: #e2e8f0; border: 2px solid #30363d; position: relative; overflow: hidden; }
  .btn-plan-outline::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%); opacity: 0; transition: opacity 0.2s; }
  .btn-plan-outline:hover { background: #1e293b; border-color: #94a3b8; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
  .btn-plan-outline:hover::after { opacity: 1; }
  .pricing-note { text-align: center; margin-top: 24px; font-size: 13px; color: #64748b; text-wrap: balance; }
  .code-tag { background: rgba(234,88,12,0.15); color: #fb923c; padding: 2px 8px; border-radius: 5px; font-family: monospace; font-weight: 700; border: 1px solid rgba(234,88,12,0.25); }

  /* COMPARISON */
  .compare-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 620px; }
  .compare-table thead tr th { padding: 0; border: none; }
  .th-inner { padding: 16px 14px; font-size: 13px; font-weight: 700; text-align: center; letter-spacing: 0.3px; }
  .compare-table thead th:first-child .th-inner { text-align: left; background: #1e293b; color: #94a3b8; border-radius: 16px 0 0 0; }
  .compare-table thead th:last-child .th-inner { border-radius: 0 16px 0 0; }
  .th-tool { background: #1e293b; color: #94a3b8; transition: background 0.2s, color 0.2s; cursor: pointer; }
  .th-tool:hover { background: #273548; color: #e2e8f0; }
  .th-tool a { transition: color 0.2s; }
  .th-tool:hover a { color: #f1f5f9 !important; }
  .th-pg { background: #ea580c; color: #fff; position: relative; }
  .th-pg .best-tag { display: inline-block; font-size: 10px; font-weight: 700; background: #fbbf24; color: #78350f; padding: 2px 8px; border-radius: 100px; margin-left: 8px; letter-spacing: 0.5px; vertical-align: middle; }
  .compare-table tbody tr td { padding: 0; border: none; }
  .td-inner { padding: 14px 14px; font-size: 14px; border-bottom: 1px solid #1e293b; text-align: center; background: #161b22; color: #94a3b8; }
  .compare-table tbody tr:last-child .td-inner { border-bottom: none; }
  .compare-table tbody tr:last-child td:first-child .td-inner { border-radius: 0 0 0 16px; }
  .compare-table tbody tr:last-child td:last-child .td-inner { border-radius: 0 0 16px 0; }
  .td-inner.feat { text-align: left; font-weight: 600; font-size: 13px; color: #e2e8f0; background: #0d1117; }
  .td-inner.feat .feat-sub { font-size: 11px; font-weight: 400; color: #64748b; margin-top: 1px; }
  .td-inner.pg-col { background: rgba(234,88,12,0.08); border-bottom-color: rgba(234,88,12,0.15); }
  .compare-table tbody tr:hover .td-inner { background: #1e293b; }
  .compare-table tbody tr:hover .td-inner.pg-col { background: rgba(234,88,12,0.15); }
  .chk { display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; font-size:13px; font-weight:700; }
  .chk-yes { background:#dcfce7; color:#16a34a; }
  .chk-no  { background:#1e293b; color:#475569; font-size:16px; }
  .chk-part { background:rgba(251,191,36,0.12); color:#fbbf24; font-size:11px; font-weight:700; }
  .price-tag { font-size:13px; font-weight:700; }
  .price-tag.free { color:#4ade80; }
  .price-tag.paid { color:#94a3b8; }

  /* ALTERNATIVES */
  .alternatives { background: #0d1117; padding: 80px 24px; }
  .alternatives .section-title { color: #f1f5f9; }
  .alternatives .section-sub { color: #64748b; }
  .alt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
  .alt-card { background: #161b22; border: 1.5px solid #30363d; border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color 0.2s, transform 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
  .alt-card:hover { border-color: #ea580c; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(234,88,12,0.15); }
  .alt-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 6px; width: fit-content; }
  .alt-badge-alt { background: rgba(59,130,246,0.15); color: #60a5fa; }
  .alt-badge-comp { background: rgba(22,163,74,0.12); color: #4ade80; }
  .alt-name { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: #f1f5f9; }
  .alt-rating { font-size: 14px; color: #f59e0b; }
  .alt-rating-src { color: #64748b; font-size: 12px; }
  .alt-price { font-size: 14px; color: #4ade80; font-weight: 600; }
  .alt-price strong { font-weight: 700; }
  .alt-desc { font-size: 14px; color: #94a3b8; line-height: 1.65; flex: 1; }
  .alt-vs { font-size: 12px; color: #64748b; line-height: 1.5; }
  .alt-btn { display: inline-block; margin-top: 4px; background: transparent; color: #e2e8f0; border: 1.5px solid #30363d; padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: all 0.2s; width: fit-content; }
  .alt-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

  /* FAQ */
  .faq { background: #0a0f1a; }
  .faq-item { border: 1px solid #1e293b; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
  .faq-q { padding: 18px 20px; font-size: 15px; font-weight: 600; color: #e2e8f0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #161b22; user-select: none; }
  .faq-q:hover { background: #1e293b; }
  .faq-icon { color: var(--primary); font-size: 20px; transition: transform 0.2s; }
  .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: #94a3b8; line-height: 1.7; background: #161b22; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }

  /* FINAL CTA */
  .final-cta { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); color: #fff; text-align: center; padding: 80px 24px; }
  .final-cta h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; }
  .final-cta p { font-size: 17px; opacity: 0.85; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .final-checks { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; font-size: 14px; }
  .final-checks span { opacity: 0.9; }
  .final-checks span::before { content: "✓ "; font-weight: 700; }
  .btn-final { background: #fff; color: #ea580c; padding: 16px 38px; border-radius: 100px; font-size: 17px; font-weight: 800; transition: all 0.2s; display: inline-block; box-shadow: 0 4px 24px rgba(255,255,255,0.2); }
  .btn-final:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,0.3); background: #f1f5f9; }

  /* EXIT POPUP */
  .popup-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.65); backdrop-filter: blur(4px); z-index: 999; align-items: center; justify-content: center; }
  .popup-overlay.show { display: flex; }
  .popup-box { background: #fff; border-radius: 24px; padding: 44px 36px; max-width: 440px; width: 90%; text-align: center; position: relative; border-top: 5px solid var(--primary); box-shadow: 0 24px 60px rgba(234,88,12,0.18), 0 4px 20px rgba(0,0,0,0.12); }
  .popup-close { position: absolute; top: 14px; right: 18px; font-size: 22px; cursor: pointer; color: #94a3b8; background: none; border: none; line-height: 1; }
  .popup-close:hover { color: var(--dark); }
  .popup-icon { font-size: 40px; margin-bottom: 16px; }
  .popup-box h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; color: var(--dark); }
  .popup-box p { color: #64748b; font-size: 15px; margin-bottom: 24px; }
  .btn-popup { display: block; width: 100%; background: var(--primary); color: #fff; padding: 16px; border-radius: 100px; font-size: 16px; font-weight: 700; margin-bottom: 12px; transition: all 0.2s; box-shadow: 0 4px 16px rgba(234,88,12,0.35); }
  .btn-popup:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,88,12,0.4); }
  .popup-skip { font-size: 13px; color: #94a3b8; cursor: pointer; }
  .popup-skip:hover { color: #64748b; }

  /* FOOTER */
  footer { background: var(--dark); color: #94a3b8; padding: 32px 24px; text-align: center; font-size: 13px; line-height: 1.8; }
  footer a { color: #60a5fa; }

  /* REVIEW 2-COL LAYOUT */
  .review-section { background: #0d1117; padding: 52px 0 64px; }
  .review-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
  .review-eyebrow { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
  .review-h2 { font-family: var(--font-head); font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: #f1f5f9; letter-spacing: -1px; line-height: 1.2; margin-bottom: 14px; }
  .review-intro { font-size: 15px; color: #64748b; line-height: 1.7; margin-bottom: 22px; text-wrap: balance; }
  .review-h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: #e2e8f0; margin: 26px 0 14px; }
  .review-right { position: sticky; top: 72px; align-self: start; }
  .sticky-panel { display: flex; flex-direction: column; gap: 12px; }

  .r-card { background: #161b22; border: 1px solid #30363d; border-radius: 18px; padding: 20px 24px 18px; color: #fff; text-align: center; }
  .r-score { font-family: var(--font-head); font-size: 60px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -3px; }
  .r-stars { font-size: 20px; color: #f59e0b; margin: 4px 0 2px; letter-spacing: 3px; }
  .r-count { font-size: 11px; color: #94a3b8; margin-bottom: 4px; }

  .d-card { background: #161b22; border: 1px solid #30363d; border-radius: 18px; padding: 20px 24px 18px; color: #fff; text-align: center; }
  .d-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
  .d-discount { font-family: var(--font-head); font-size: 40px; font-weight: 900; color: var(--primary); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
  .d-plan { font-size: 13px; color: #475569; margin-bottom: 6px; }
  .d-auto { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: #059669; background: rgba(5,150,105,0.07); border: 1px solid rgba(5,150,105,0.18); border-radius: 100px; padding: 3px 10px; margin-bottom: 14px; }
  .d-auto::before { content: "✓"; }
  .btn-deal-card { display: block; width: 100%; background: var(--primary); color: #fff; padding: 13px 20px; border-radius: 100px; font-family: var(--font-head); font-size: 15px; font-weight: 700; text-align: center; transition: all 0.2s; margin-bottom: 10px; }
  .btn-deal-card:hover { background: var(--primary-dark); transform: translateY(-2px); }
  .d-url { font-size: 10px; color: #94a3b8; word-break: break-all; }

  @media(max-width:960px){ .review-container { grid-template-columns: 1fr; padding: 0 24px; } .review-right { position: static; } }
  @media(max-width:768px){ .nav-links { display: none; } .hero-stats { gap: 20px; } .pricing-grid { grid-template-columns: 1fr; } }

/* ---- extra components from paperguide (search demo, ratings bars, testimonials) ---- */
.demo-search-box {
    background: #122039;
    border: 1px solid rgba(234,88,12,0.3);
    border-radius: 10px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
.demo-search-icon { font-size: 15px; flex-shrink: 0; }
.demo-search-text { font-size: 13px; color: #94a3b8; flex: 1; line-height: 1.4; }
.demo-cursor {
    color: var(--primary); font-weight: 700;
    animation: blink 1s step-end infinite;
  }
.demo-result {
    background: #122039; border-radius: 10px;
    padding: 14px 16px; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.06);
  }
.demo-result-left { display: flex; align-items: center; gap: 12px; }
.demo-result-icon { font-size: 24px; }
.demo-result-title { font-size: 14px; font-weight: 700; color: #e2e8f0; margin-bottom: 3px; }
.demo-result-sub { font-size: 11px; color: #475569; }
.demo-play-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(234,88,12,0.4);
  }
/* Waveform */
  .demo-wave {
    display: flex; align-items: center; gap: 3px; height: 28px;
    padding: 0 4px;
  }
.demo-wave span {
    flex: 1; background: var(--primary); border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
    opacity: 0.7;
  }
.demo-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.demo-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.demo-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.demo-wave span:nth-child(4) { height: 55%; animation-delay: 0.3s; }
.demo-wave span:nth-child(5) { height: 85%; animation-delay: 0.4s; }
.demo-wave span:nth-child(6) { height: 40%; animation-delay: 0.3s; }
.demo-wave span:nth-child(7) { height: 90%; animation-delay: 0.2s; }
.demo-wave span:nth-child(8) { height: 60%; animation-delay: 0.1s; }
.demo-wave span:nth-child(9) { height: 75%; animation-delay: 0s; }
.demo-wave span:nth-child(10) { height: 35%; animation-delay: 0.15s; }
/* TESTIMONIALS */
  .testimonials { background: #0a0f1a; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testi-card {
    background: #161b22; border-radius: 14px;
    padding: 24px; border: 1px solid #1e293b;
  }
.testi-stars { color: #f59e0b; font-size: 15px; margin-bottom: 12px; }
.testi-text { font-size: 14px; line-height: 1.7; color: #94a3b8; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
  }
.testi-name { font-size: 14px; font-weight: 600; color: #e2e8f0; }
.testi-role { font-size: 12px; color: #475569; }
.popup-timer {
    font-size: 40px; font-weight: 900; color: var(--primary);
    font-variant-numeric: tabular-nums; margin-bottom: 24px;
    background: #fff5f1; border-radius: 12px; padding: 10px 20px;
    display: inline-block; letter-spacing: 2px;
  }
/* Rating bars */
  .r-bars { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.rbar { display: flex; align-items: center; gap: 8px; }
.rbar-label {
    font-size: 12px;
    color: #64748b;
    width: 10px;
    flex-shrink: 0;
    text-align: right;
  }
.rbar-track {
    flex: 1;
    height: 6px;
    background: #1e293b;
    border-radius: 100px;
    overflow: hidden;
  }
.rbar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 100px;
  }
.rbar-fill.rbar-fill-sm { background: #e2e8f0; }
.rbar-pct {
    font-size: 11px;
    color: #94a3b8;
    width: 28px;
    flex-shrink: 0;
  }
@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
  }