    /* ═══════════════════════════════════════
       REFUNDMYSOL.ORG — DESIGN SYSTEM
       Theme: Take Action — Dark / Amber
       ═══════════════════════════════════════ */

    :root {
      --bg: #09090B;
      --bg2: #18181B;
      --bg3: #27272A;
      --bg4: #3F3F46;
      --accent: #F59E0B;
      --accent2: #D97706;
      --accent-dim: rgba(245, 158, 11, 0.08);
      --accent-glow: rgba(245, 158, 11, 0.15);
      --text: #FAFAFA;
      --muted: #A1A1AA;
      --muted2: #71717A;
      --line: rgba(161, 161, 170, 0.12);
      --line2: rgba(161, 161, 170, 0.06);
      --win: #22C55E;
      --lose: #EF4444;
      --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
      --font-heading: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
      --max-w: 780px;
      --max-w-wide: 1100px;
      --radius: 12px;
      --radius-sm: 8px;
      --radius-xs: 6px;
    }

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
    a:hover { color: var(--accent2); }

    img { max-width: 100%; height: auto; display: block; }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text);
    }

    h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); letter-spacing: -0.02em; margin-top: 2.5rem; margin-bottom: 1rem; }
    h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-top: 2rem; margin-bottom: 0.75rem; }

    p { margin-bottom: 1.25rem; color: var(--muted); }

    ul, ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--muted); }
    li { margin-bottom: 0.35rem; }

    strong { color: var(--text); font-weight: 600; }

    blockquote {
      border-left: 3px solid var(--accent);
      padding: 1rem 1.5rem;
      margin: 1.5rem 0;
      background: var(--accent-dim);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      color: var(--muted);
      font-style: italic;
    }

    code {
      background: var(--bg3);
      padding: 0.15em 0.4em;
      border-radius: 4px;
      font-size: 0.9em;
      color: var(--accent);
    }

    pre {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 1.25rem;
      overflow-x: auto;
      margin-bottom: 1.5rem;
    }

    pre code {
      background: transparent;
      padding: 0;
      color: var(--muted);
    }

    hr {
      border: none;
      border-top: 1px solid var(--line);
      margin: 2.5rem 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5rem 0;
      font-size: 0.95rem;
    }

    th, td {
      padding: 0.75rem 1rem;
      text-align: left;
      border-bottom: 1px solid var(--line);
    }

    th {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--text);
      background: var(--bg2);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    td { color: var(--muted); }

    tbody tr:hover { background: var(--accent-dim); }

    /* ── Skip link ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--accent);
      color: var(--bg);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-xs);
      font-weight: 600;
      z-index: 9999;
    }
    .skip-link:focus { top: 1rem; }

    /* ── Header ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(9, 9, 11, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      max-width: var(--max-w-wide);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 0.15rem;
    }

    .logo span {
      color: var(--accent);
    }

    .logo::after {
      content: '';
      display: block;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .logo:hover::after { width: 100%; }
    .logo:hover { color: var(--text); }

    /* ── Desktop Nav ── */
    .nav-desktop { display: flex; align-items: center; gap: 2rem; }

    .nav-desktop a {
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 500;
      position: relative;
      padding: 0.25rem 0;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

    .nav-desktop a:hover,
    .nav-desktop a[aria-current="page"] { color: var(--text); }
    .nav-desktop a:hover::after,
    .nav-desktop a[aria-current="page"]::after { width: 100%; }

    /* ── Hamburger ── */
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      z-index: 200;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      margin: 5px 0;
      transition: all 0.3s;
      border-radius: 2px;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ── Mobile Nav Drawer ── */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(9, 9, 11, 0.98);
      z-index: 99;
      padding: 2rem 1.5rem;
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-mobile.open { display: flex; }

    .nav-mobile a {
      color: var(--muted);
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 600;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-mobile a:hover,
    .nav-mobile a[aria-current="page"] { color: var(--accent); }

    .nav-mobile a::after {
      content: '\2192';
      font-size: 1.2rem;
      color: var(--muted2);
    }

    /* ── Breadcrumbs ── */
    .breadcrumbs {
      max-width: var(--max-w);
      margin: 1.5rem auto 0;
      padding: 0 1.5rem;
      font-size: 0.85rem;
      color: var(--muted2);
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .breadcrumbs a { color: var(--muted); }
    .breadcrumbs a:hover { color: var(--accent); }
    .breadcrumbs .sep { color: var(--muted2); }

    /* ── Content Wrapper ── */
    .content-wrap {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }

    .content-wide {
      max-width: var(--max-w-wide);
      margin: 0 auto;
      padding: 2rem 1.5rem 4rem;
    }

    /* ── Article Prose ── */
    .prose a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(245,158,11,0.3); text-underline-offset: 3px; }
    .prose a:hover { text-decoration-color: var(--accent); }
    .prose h2 { padding-top: 1rem; border-top: 1px solid var(--line); }
    .prose img { border-radius: var(--radius-sm); margin: 1.5rem 0; }

    /* ── Hero Section ── */
    .hero {
      text-align: center;
      padding: 5rem 1.5rem 3.5rem;
      max-width: var(--max-w-wide);
      margin: 0 auto;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero h1 {
      margin-bottom: 1.25rem;
      position: relative;
    }

    .hero h1 .accent { color: var(--accent); }

    .hero p {
      font-size: 1.15rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      position: relative;
    }

    /* ── Cards / Post Grid ── */
    .post-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .post-card {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }

    .post-card:hover {
      border-color: var(--accent);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
    }

    /* Staggered card animation */
    .post-grid .post-card:nth-child(2) { transition-delay: 0.06s; }
    .post-grid .post-card:nth-child(3) { transition-delay: 0.12s; }
    .post-grid .post-card:nth-child(4) { transition-delay: 0.18s; }
    .post-grid .post-card:nth-child(5) { transition-delay: 0.24s; }
    .post-grid .post-card:nth-child(6) { transition-delay: 0.30s; }

    .post-card .card-cat {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }

    .post-card h3 {
      font-size: 1.15rem;
      margin: 0 0 0.75rem;
      line-height: 1.35;
    }

    .post-card h3 a { color: var(--text); }
    .post-card h3 a:hover { color: var(--accent); }

    .post-card .card-desc {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 1rem;
    }

    .post-card .card-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
      color: var(--muted2);
      border-top: 1px solid var(--line);
      padding-top: 0.75rem;
    }

    /* ── Featured Card ── */
    .featured-card {
      background: var(--bg2);
      border: 2px solid var(--accent);
      border-radius: var(--radius);
      padding: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.3s;
    }

    .featured-card:hover {
      box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(245, 158, 11, 0.08);
    }

    .featured-card::before {
      content: 'FEATURED REVIEW';
      position: absolute;
      top: 0;
      left: 0;
      background: var(--accent);
      color: var(--bg);
      font-family: var(--font-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.35rem 1rem;
      border-radius: 0 0 var(--radius-xs) 0;
    }

    .featured-card h2 {
      margin-top: 1rem;
      border: none;
      padding: 0;
    }

    /* ── Category Pills ── */
    .cat-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 1.5rem 0;
    }

    .cat-pill {
      background: var(--bg3);
      border: 1px solid var(--line);
      color: var(--muted);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
      transition: all 0.2s;
      cursor: pointer;
    }

    .cat-pill:hover, .cat-pill.active {
      background: var(--accent-dim);
      border-color: var(--accent);
      color: var(--accent);
    }

    /* ── Winner Badge ── */
    .winner-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.3);
      color: var(--win);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .winner-badge::before {
      content: '\2605';
      font-size: 0.9rem;
    }

    .runner-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--bg3);
      border: 1px solid var(--line);
      color: var(--muted);
      padding: 0.3rem 0.85rem;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── Verdict Box ── */
    .verdict-banner {
      background: linear-gradient(135deg, var(--accent-dim), rgba(245,158,11,0.04));
      border: 1px solid rgba(245,158,11,0.25);
      border-left: 4px solid var(--accent);
      border-radius: var(--radius-sm);
      padding: 1.25rem 1.5rem;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .verdict-banner .verdict-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .verdict-banner .verdict-text {
      font-family: var(--font-heading);
      font-weight: 600;
      color: var(--text);
      font-size: 0.95rem;
    }

    .verdict-banner .verdict-text span { color: var(--accent); }

    .verdict-box {
      background: var(--bg2);
      border: 2px solid var(--win);
      border-radius: var(--radius);
      padding: 2rem;
      margin: 2.5rem 0;
      position: relative;
    }

    .verdict-box::before {
      content: '\2605 OUR PICK';
      position: absolute;
      top: -12px;
      left: 1.5rem;
      background: var(--win);
      color: #fff;
      font-family: var(--font-heading);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.85rem;
      border-radius: 100px;
    }

    .verdict-box h3 {
      margin: 0.5rem 0 1rem;
      color: var(--win);
    }

    .verdict-box ul {
      list-style: none;
      padding: 0;
    }

    .verdict-box li {
      padding: 0.4rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--muted);
    }

    .verdict-box li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: var(--win);
      font-weight: 700;
    }

    /* ── CTA Button ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1rem;
      color: var(--bg);
      background: var(--accent);
      padding: 0.85rem 2rem;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .btn:hover {
      background: var(--accent2);
      color: var(--bg);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(245,158,11,0.25);
    }

    .btn::after { content: '\2192'; }

    .btn-sm {
      font-size: 0.9rem;
      padding: 0.6rem 1.25rem;
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
    }
    .btn-outline:hover {
      background: var(--accent);
      color: var(--bg);
    }

    /* ── Article Header ── */
    .article-header {
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--line);
    }

    .article-header .meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      color: var(--muted2);
    }

    .article-header .meta-cat {
      background: var(--accent-dim);
      border: 1px solid rgba(245,158,11,0.2);
      color: var(--accent);
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .article-header h1 {
      margin-bottom: 1rem;
    }

    .article-header .article-desc {
      font-size: 1.1rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── TOC ── */
    .toc {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem 2rem;
      margin-bottom: 2.5rem;
    }

    .toc-title {
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted2);
      margin-bottom: 0.75rem;
    }

    .toc ol {
      list-style: none;
      padding: 0;
      counter-reset: toc-counter;
    }

    .toc li {
      counter-increment: toc-counter;
      margin-bottom: 0.35rem;
    }

    .toc li::before {
      content: counter(toc-counter) '.';
      color: var(--accent);
      font-weight: 600;
      margin-right: 0.5rem;
      font-size: 0.9rem;
    }

    .toc a {
      color: var(--muted);
      font-size: 0.92rem;
      text-decoration: none;
    }

    .toc a:hover { color: var(--accent); }

    /* ── Related Articles ── */
    .related-section {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--line);
    }

    .related-section h2 {
      border: none;
      padding: 0;
      margin-top: 0;
    }

    /* ── Sticky CTA Bar ── */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(24, 24, 27, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid var(--line);
      padding: 0.75rem 1.5rem;
      z-index: 90;
      transform: translateY(100%);
      transition: transform 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sticky-cta.visible { transform: translateY(0); }

    .sticky-cta a {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .sticky-cta a:hover { color: var(--accent2); }

    .sticky-cta .cta-badge {
      background: var(--accent);
      color: var(--bg);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      letter-spacing: 0.04em;
    }

    /* ── Footer ── */
    .site-footer {
      border-top: 1px solid var(--line);
      padding: 3.5rem 1.5rem 6rem;
      margin-top: 4rem;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(24, 24, 27, 0.5) 100%);
    }

    .footer-inner {
      max-width: var(--max-w-wide);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-brand .footer-logo {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    .footer-brand .footer-logo span { color: var(--accent); }

    .footer-brand p {
      font-size: 0.9rem;
      color: var(--muted2);
      line-height: 1.6;
    }

    .footer-col h4 {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted2);
      margin-bottom: 1rem;
    }

    .footer-col a {
      display: block;
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .footer-col a:hover { color: var(--accent); }

    .footer-bottom {
      max-width: var(--max-w-wide);
      margin: 2.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--line2);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--muted2);
    }

    .footer-disclaimer {
      max-width: var(--max-w-wide);
      margin: 1.5rem auto 0;
      font-size: 0.75rem;
      color: var(--muted2);
      line-height: 1.6;
      opacity: 0.7;
    }

    /* ── Cookie Consent ── */
    .cookie-banner {
      position: fixed;
      bottom: 70px;
      left: 1rem;
      max-width: 380px;
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      z-index: 200;
      display: none;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .cookie-banner.show {
      display: block;
      animation: slideInCookie 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes slideInCookie {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cookie-banner p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .cookie-banner .cookie-actions {
      display: flex;
      gap: 0.75rem;
    }

    .cookie-banner button {
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: var(--radius-xs);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .cookie-accept {
      background: var(--accent);
      color: var(--bg);
    }

    .cookie-accept:hover { background: var(--accent2); }

    .cookie-decline {
      background: var(--bg3);
      color: var(--muted);
    }

    .cookie-decline:hover { background: var(--bg4); color: var(--text); }

    /* ── fadeUp Animation ── */
    /* Content visible by default; JS adds .js-ready to html, enabling animation */
    .fadeUp {
      opacity: 1;
      transform: translateY(0);
    }

    html.js-ready .fadeUp {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    html.js-ready .fadeUp.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Progress Bar (comparison tables) ── */
    .progress-bar {
      background: var(--bg3);
      border-radius: 100px;
      height: 8px;
      overflow: hidden;
      width: 100%;
    }

    .progress-fill {
      height: 100%;
      border-radius: 100px;
      transition: width 0.6s ease;
    }

    .progress-fill.win { background: var(--win); }
    .progress-fill.accent { background: var(--accent); }
    .progress-fill.muted { background: var(--muted2); }

    /* ── Comparison Table Enhancements ── */
    .compare-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
    .compare-table th:first-child, .compare-table td:first-child { font-weight: 600; color: var(--text); }
    .compare-table .highlight-col { background: var(--accent-dim); }

    /* ── 404 Page ── */
    .page-404 {
      text-align: center;
      padding: 6rem 1.5rem;
    }

    .page-404 h1 { margin-bottom: 1rem; }
    .page-404-desc {
      font-size: 1.1rem;
      max-width: 500px;
      margin: 0 auto 2rem;
    }
    .page-404-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }
    .page-404 .big-number {
      font-family: var(--font-heading);
      font-size: clamp(6rem, 15vw, 12rem);
      font-weight: 700;
      color: var(--bg3);
      line-height: 1;
      margin-bottom: 1rem;
    }

    /* ── Utility ── */
    .accent { color: var(--accent); }

    /* ── About Page ── */
    .about-hero {
      text-align: center;
      padding: 3rem 0;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--line);
    }

    .about-subtitle {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 1rem auto 0;
    }

    /* ── Pagination ── */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 3rem;
    }

    .pagination a, .pagination span {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-xs);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .pagination a {
      background: var(--bg2);
      border: 1px solid var(--line);
      color: var(--muted);
    }

    .pagination a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .pagination .current {
      background: var(--accent);
      color: var(--bg);
    }

    /* ── Table Responsive Wrapper ── */
    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 1.5rem 0;
      position: relative;
    }

    /* First row highlight for winner */
    .compare-table tbody tr:first-child {
      background: rgba(245, 158, 11, 0.04);
    }
    .compare-table tbody tr:first-child td {
      color: var(--text);
    }

    /* ── Fee Savings Calculator ── */
    .fee-calc {
      background: var(--bg2);
      border: 2px solid var(--accent);
      border-radius: var(--radius);
      padding: 2rem;
      margin: 2rem 0;
    }
    .fee-calc-title {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.35rem;
    }
    .fee-calc-title span { color: var(--accent); }
    .fee-calc-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
    .fee-calc-row {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .fee-calc-row label {
      font-weight: 500;
      color: var(--muted);
      font-size: 0.9rem;
      white-space: nowrap;
    }
    .fee-calc-row input[type="number"] {
      width: 120px;
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-xs);
      font-family: var(--font-body);
      font-size: 1rem;
      background: var(--bg);
      color: var(--text);
    }
    .fee-calc-row input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }
    .fee-calc-btn {
      background: var(--accent);
      color: var(--bg);
      border: none;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.6rem 1.5rem;
      border-radius: var(--radius-xs);
      cursor: pointer;
      transition: background 0.2s;
    }
    .fee-calc-btn:hover { background: var(--accent2); }
    .fee-presets {
      display: flex;
      gap: 0.4rem;
      margin-top: 0.75rem;
      flex-wrap: wrap;
    }
    .fee-preset {
      background: var(--bg3);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.78rem;
      font-family: var(--font-heading);
      font-weight: 500;
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .fee-preset:hover { border-color: var(--accent); color: var(--accent); }

    .fee-results {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .fee-results.show { display: grid; }
    .fee-card {
      background: var(--bg3);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 1rem;
      transition: border-color 0.2s;
    }
    .fee-card-winner {
      border-color: var(--win);
      background: rgba(34,197,94,0.06);
    }
    .fee-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
    }
    .fee-card-name {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text);
    }
    .fee-card-badge {
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: var(--win);
      color: #fff;
      padding: 0.15rem 0.5rem;
      border-radius: 100px;
    }
    .fee-card-amount {
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text);
    }
    .fee-card-winner .fee-card-amount { color: var(--win); }
    .fee-card-detail {
      font-size: 0.78rem;
      color: var(--muted2);
      margin-top: 0.25rem;
    }
    .fee-card-loss {
      font-size: 0.75rem;
      color: var(--lose);
      margin-top: 0.35rem;
      font-weight: 500;
    }

    /* ── Savings Counter ── */
    .savings-banner {
      background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(245,158,11,0.06));
      border: 1px solid rgba(34,197,94,0.2);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      margin: 2rem 0;
    }
    .savings-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted2);
      margin-bottom: 0.5rem;
    }
    .savings-number {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      font-weight: 700;
      color: var(--win);
    }
    .savings-unit {
      font-size: 0.9rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    /* ── ROI Projection ── */
    .roi-calc {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 2rem;
      margin: 2rem 0;
    }
    .roi-calc-title {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.35rem;
    }
    .roi-calc-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
    .roi-row {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .roi-row label {
      font-weight: 500;
      color: var(--muted);
      font-size: 0.85rem;
      white-space: nowrap;
    }
    .roi-row input, .roi-row select {
      padding: 0.55rem 0.75rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-xs);
      font-family: var(--font-body);
      font-size: 0.95rem;
      background: var(--bg);
      color: var(--text);
    }
    .roi-row input:focus, .roi-row select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }
    .roi-row input[type="number"] { width: 100px; }
    .roi-row select { width: 130px; }
    .roi-result {
      display: none;
      margin-top: 1.25rem;
      padding: 1.25rem;
      background: rgba(34,197,94,0.06);
      border: 1px solid rgba(34,197,94,0.2);
      border-radius: var(--radius-sm);
    }
    .roi-result.show { display: block; }
    .roi-future {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--win);
    }
    .roi-gain {
      font-size: 0.88rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }
    .roi-note {
      font-size: 0.82rem;
      color: var(--muted2);
      margin-top: 0.5rem;
      font-style: italic;
    }

    /* ── Tool Quiz ── */
    .quiz-wrap {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 2rem;
      margin: 2rem 0;
    }
    .quiz-title {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.35rem;
    }
    .quiz-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
    .quiz-q {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .quiz-step {
      font-size: 0.75rem;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }
    .quiz-options {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .quiz-opt {
      background: var(--bg3);
      border: 1px solid var(--line);
      color: var(--muted);
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-sm);
      cursor: pointer;
      text-align: left;
      transition: all 0.2s;
    }
    .quiz-opt:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-dim);
    }
    .quiz-result-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted2);
      margin-bottom: 0.5rem;
    }
    .quiz-result-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--win);
      margin-bottom: 0.75rem;
    }
    .quiz-result-reason {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.65;
    }
    .quiz-restart {
      background: none;
      border: 1px solid var(--line);
      color: var(--muted2);
      font-family: var(--font-heading);
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      cursor: pointer;
      margin-top: 1rem;
      transition: all 0.2s;
    }
    .quiz-restart:hover { border-color: var(--accent); color: var(--accent); }

    /* ── How It Works Steps ── */
    .how-it-works { margin-top: 4rem; margin-bottom: 3rem; }
    .section-heading { text-align: center; margin-bottom: 2rem; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .step-card {
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 2rem 1.75rem;
      text-align: center;
      position: relative;
      transition: border-color 0.3s, transform 0.2s;
    }
    .step-card:hover {
      border-color: rgba(245, 158, 11, 0.3);
      transform: translateY(-2px);
    }
    .step-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--accent-dim);
      border: 1px solid rgba(245, 158, 11, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: var(--accent);
    }
    .step-number {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      font-family: var(--font-heading);
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--muted2);
      background: var(--bg3);
      width: 24px;
      height: 24px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-card h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
    .step-card p { font-size: 0.9rem; margin: 0; color: var(--muted); }

    /* ── Bottom CTA ── */
    .bottom-cta {
      text-align: center;
      padding: 3rem;
      background: var(--bg2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      margin-bottom: 2rem;
    }
    .bottom-cta h2, .bottom-cta h3 {
      margin: 0 0 0.75rem;
      border: none;
      padding: 0;
    }
    .bottom-cta p {
      margin-bottom: 1.5rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ── Sortable Table Headers ── */
    th[data-sort]::after {
      content: " \2195";
      font-size: 0.7em;
      color: var(--muted2);
    }
    th.sorted-asc::after {
      content: " \2191";
      color: var(--accent);
    }
    th.sorted-desc::after {
      content: " \2193";
      color: var(--accent);
    }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      .nav-desktop { display: none; }
      .nav-toggle { display: block; }

      .header-inner { height: 56px; }

      .hero { padding: 2.5rem 1rem 2rem; }
      .hero h1 { font-size: 1.75rem; }
      .hero p { font-size: 1rem; }
      .hero::before { width: 300px; height: 200px; }

      .content-wrap, .content-wide { padding: 1.5rem 1rem 3rem; }

      .post-grid { grid-template-columns: 1fr; gap: 1rem; }
      .post-card { padding: 1.25rem; }

      .featured-card { padding: 1.5rem; }

      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .fee-calc { padding: 1.25rem; }
      .fee-results { grid-template-columns: 1fr 1fr; }
      .fee-card-amount { font-size: 1.1rem; }

      .article-header h1 { font-size: 1.6rem; }

      .verdict-box { padding: 1.5rem; }

      .toc { padding: 1.25rem; }

      table { font-size: 0.85rem; }
      th, td { padding: 0.5rem 0.65rem; }

      .sticky-cta { padding: 0.6rem 1rem; }
      .sticky-cta a { font-size: 0.85rem; }

      .breadcrumbs { margin-top: 1rem; }

      .btn { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }

      .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
      .step-card { padding: 1.5rem; }

      .bottom-cta { padding: 2rem 1.5rem; }

      .cookie-banner { left: 0.5rem; right: 0.5rem; max-width: none; bottom: 60px; }

      .roi-row { flex-direction: column; align-items: stretch; }
      .roi-row input[type="number"], .roi-row select { width: 100%; }
    }

    @media (max-width: 400px) {
      .hero h1 { font-size: 1.5rem; }
      .post-card h3 { font-size: 1.05rem; }
    }
