:root {
      --blue:       #054988;
      --blue-dark:  #033566;
      --blue-light: #e6eef7;
      --teal:       #199c8b;
      --teal-dark:  #117a6c;
      --teal-light: #e4f4f2;
      --bg:         #f4f6f9;
      --surface:    #ffffff;
      --border:     #dde3ea;
      --border2:    #c5cfd9;
      --text:       #1a2030;
      --muted:      #6b7585;
      --muted2:     #9aa3b0;
      --green:      #199c8b;
      --red:        #c0392b;
      --gold:       #c49a2a;
      --shadow:     0 1px 3px rgba(5,73,136,.06), 0 4px 12px rgba(5,73,136,.07);
      --shadow-lg:  0 2px 8px rgba(5,73,136,.07), 0 12px 32px rgba(5,73,136,.11);
      --font:       'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; }

    /* ── NAV ──────────────────────────────────────── */
    .site-nav {
      background: var(--surface);
      border-bottom: 2px solid var(--blue);
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 12px rgba(5,73,136,.1);
    }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo img { height: 36px; width: auto; display: block; }
    .nav-right { display: flex; align-items: center; gap: 8px; }
    .nav-links { display: flex; }
    .nav-link {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .03em;
      text-decoration: none;
      text-transform: uppercase;
      padding: 0 16px;
      height: 64px;
      display: flex;
      align-items: center;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: color .15s, border-color .15s;
    }
    .nav-link:hover { color: var(--blue); }
    .nav-link.active { color: var(--blue); border-bottom-color: var(--teal); }

    /* ── LANG PICKER BUTTON ───────────────────────── */
    .lang-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--blue-light);
      border: 1px solid var(--border2);
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .05em;
      padding: 5px 10px;
      border-radius: 5px;
      cursor: pointer;
      transition: background .15s, border-color .15s;
      font-family: var(--font);
      white-space: nowrap;
    }
    .lang-trigger:hover { background: #d4e4f4; border-color: var(--blue); }
    .lang-trigger svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── LANG OVERLAY ─────────────────────────────── */
    .lang-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
    }
    .lang-overlay.is-open { display: block; }
    .lang-overlay-bg {
      position: absolute;
      inset: 0;
      background: rgba(3,53,102,.4);
      backdrop-filter: blur(3px);
    }
    .lang-modal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(.96);
      background: var(--surface);
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(5,73,136,.2);
      width: min(420px, 92vw);
      transition: transform .2s cubic-bezier(.4,0,.2,1), opacity .2s;
      opacity: 0;
    }
    .lang-overlay.is-open .lang-modal {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
    .lang-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px 14px;
      border-bottom: 1px solid var(--border);
    }
    .lang-modal-head h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: .02em;
    }
    .lang-modal-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 1.2rem;
      line-height: 1;
      padding: 4px 6px;
      border-radius: 4px;
      transition: background .15s, color .15s;
      font-family: var(--font);
    }
    .lang-modal-close:hover { background: var(--blue-light); color: var(--blue); }
    .lang-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      padding: 16px 20px 20px;
    }
    .lang-option {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 12px 8px;
      border: 1px solid var(--border);
      border-radius: 8px;
      text-decoration: none;
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      transition: all .15s;
      text-align: center;
    }
    .lang-option:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
    .lang-option.active { border-color: var(--teal); background: var(--teal-light); color: var(--teal-dark); }
    .lang-option .lang-code { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
    .lang-option .lang-name { font-size: 12px; color: var(--muted); font-weight: 400; }
    .lang-option.active .lang-name { color: var(--teal-dark); }

    /* ── HAMBURGER ────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      border-radius: 6px;
      transition: background .15s;
    }
    .hamburger:hover { background: var(--blue-light); }
    .hamburger span {
      display: block;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
      transition: transform .25s, opacity .25s, width .25s;
      transform-origin: center;
    }
    .hamburger span:nth-child(2) { width: 75%; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE DRAWER ────────────────────────────── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 300;
    }
    .mobile-nav-overlay {
      position: absolute;
      inset: 0;
      background: rgba(3,53,102,.45);
      backdrop-filter: blur(2px);
    }
    .mobile-nav-drawer {
      position: absolute;
      top: 0; right: 0;
      width: min(300px, 85vw);
      height: 100%;
      background: var(--surface);
      box-shadow: -4px 0 24px rgba(5,73,136,.15);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform .28s cubic-bezier(.4,0,.2,1);
      z-index: 1;
    }
    .mobile-nav.is-open { display: block; }
    .mobile-nav.is-open .mobile-nav-drawer { transform: translateX(0); }
    .mobile-nav-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav-head img { height: 30px; width: auto; }
    .mobile-nav-close {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.4rem;
      color: var(--muted);
      line-height: 1;
      padding: 4px 8px;
      border-radius: 4px;
      transition: background .15s, color .15s;
      font-family: var(--font);
      z-index: 2;
      position: relative;
    }
    .mobile-nav-close:hover { background: var(--blue-light); color: var(--blue); }
    .mobile-nav-links { display: flex; flex-direction: column; padding: 12px 0; flex: 1; overflow-y: auto; }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      padding: 14px 24px;
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-left: 3px solid transparent;
      transition: background .15s, color .15s, border-color .15s;
    }
    .mobile-nav-link:hover { background: var(--blue-light); color: var(--blue); }
    .mobile-nav-link.active { color: var(--blue); border-left-color: var(--teal); background: var(--teal-light); }

    /* ── PAGE HEADER ──────────────────────────────── */
    .page-header {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 52px 32px 44px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-header::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--teal-light);
      border: 1px solid rgba(25,156,139,.25);
      color: var(--teal-dark);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 3px;
      margin-bottom: 16px;
    }
    h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; color: var(--blue); margin-bottom: 12px; line-height: 1.15; letter-spacing: -.01em; }
    .subtitle { font-size: 1rem; color: var(--muted); max-width: 500px; margin: 0 auto; }

    /* ── MAIN ─────────────────────────────────────── */
    main { max-width: 1080px; width: 100%; margin: 0 auto; padding: 36px 24px 80px; flex: 1; }

    /* ── VPN LIST ─────────────────────────────────── */
    .vpn-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 52px; }
    .vpn-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 18px 22px;
      display: grid;
      grid-template-columns: 40px 190px 1fr auto;
      align-items: center;
      gap: 18px;
      position: relative;
      box-shadow: var(--shadow);
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .vpn-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--border2); }
    .vpn-card.top-pick { border-left: 4px solid var(--teal); background: linear-gradient(to right, #f0faf9 0%, #fff 50%); }
    .top-badge { position: absolute; top: -1px; left: -1px; background: var(--teal); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 10px; border-radius: 7px 0 7px 0; }
    .rank { font-size: 1.5rem; font-weight: 700; color: var(--border2); text-align: center; line-height: 1; }
    .rank.gold { color: var(--gold); }
    .vpn-name { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
    .vpn-tag  { font-size: 12px; color: var(--muted); }
    .vpn-details { display: flex; gap: 18px; flex-wrap: wrap; }
    .detail-item { display: flex; flex-direction: column; gap: 2px; min-width: 55px; }
    .lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted2); }
    .val { font-size: 13px; font-weight: 600; color: var(--text); }
    .stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
    .check { color: var(--green); } .cross { color: var(--red); }
    .vpn-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
    .btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background .15s, transform .15s; font-family: var(--font); }
    .btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
    .price-note { font-size: 11px; color: var(--teal-dark); font-weight: 600; text-align: right; }

    /* ── INFO GRID ────────────────────────────────── */
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-bottom: 48px; }
    .info-card { background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--teal); border-radius: 6px; padding: 20px; box-shadow: var(--shadow); }
    .info-card h3 { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
    .info-card p  { font-size: 13px; color: var(--muted); line-height: 1.75; }

    /* ── FAQ ──────────────────────────────────────── */
    .faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
    details { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 16px 20px; box-shadow: var(--shadow); transition: border-color .2s; }
    details[open] { border-color: var(--teal); }
    summary { font-weight: 700; font-size: .92rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--blue); }
    summary::after { content: '+'; color: var(--teal); font-size: 1.3rem; font-weight: 300; line-height: 1; }
    details[open] summary::after { content: '−'; }
    details p { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.8; }

    /* ── SUPPORT ──────────────────────────────────── */
    .support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 36px; }
    .support-card { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 26px 20px; text-align: center; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s; }
    .support-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
    .support-icon { font-size: 1.9rem; margin-bottom: 12px; display: block; }
    .support-card h3 { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 7px; }
    .support-card p  { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
    .btn-outline { display: inline-block; border: 2px solid var(--blue); color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 7px 16px; border-radius: 5px; text-decoration: none; transition: all .15s; font-family: var(--font); }
    .btn-outline:hover { background: var(--blue); color: #fff; }

    /* ── FOOTER ───────────────────────────────────── */
    .site-footer { background: var(--blue); color: rgba(255,255,255,.55); padding: 32px; text-align: center; font-size: 12px; }
    .footer-logo { height: 28px; width: auto; max-width: 160px; display: block; margin: 0 auto 20px; filter: brightness(0) invert(1); opacity: .8; }
    .footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,.65); text-decoration: none; font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; transition: color .15s; }
    .footer-links a:hover { color: #fff; }
    .disclaimer { max-width: 680px; margin: 0 auto 12px; line-height: 1.9; color: rgba(255,255,255,.4); }

    /* ── Cards global ausblenden (nur Mobile sichtbar) ── */
    .vpn-cards { display: none; }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 768px) {
      .site-nav { padding: 0 16px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .page-header { padding: 36px 16px 28px; }
      main { padding: 20px 16px 56px; }
      .vpn-card { grid-template-columns: 36px 1fr; gap: 12px; }
      .vpn-details { grid-column: 1 / -1; }
      .vpn-cta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }

      /* ── Tabellen ausblenden, Cards einblenden ── */
      .vpn-full-table, .vpn-table { display: none !important; }
      .vpn-cards { display: flex !important; flex-direction: column; gap: 10px; margin-top: 20px; }

      /* Mobile VPN Card */
      .m-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-left: 4px solid var(--teal);
        border-radius: 8px;
        padding: 14px;
        box-shadow: var(--shadow);
      }
      .m-card-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
      }
      .m-card-top img { border-radius: 6px; flex-shrink: 0; }
      .m-card-name { font-weight: 700; color: var(--blue); font-size: 15px; flex: 1; }
      .m-card-btn {
        display: inline-block;
        background: var(--blue);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 7px 12px;
        border-radius: 6px;
        text-decoration: none;
        white-space: nowrap;
        font-family: var(--font);
        flex-shrink: 0;
      }
      .m-card-details {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        border-top: 1px solid var(--border);
        padding-top: 10px;
        justify-content: space-between;
      }
      .m-card-detail {
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 70px;
      }
      .m-card-detail-label {
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .07em;
        color: var(--muted2);
      }
      .m-card-detail-value {
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
      }
      .m-card-detail-value.price { color: var(--blue); }
      .m-card-detail-value.stars { color: var(--gold); }
      .m-card-detail-value.check { color: var(--green); }
      .m-card-detail-value.cross { color: var(--red); }
      .m-tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; }
    }

/* ══ Home ══════════════════════════════════════ */
/* ── Hero ───────────────────────────────────────── */
  .hero { background: var(--surface); border-bottom: 1px solid var(--border); padding: 56px 32px 48px; display: flex; align-items: center; gap: 48px; max-width: 1080px; margin: 0 auto; }
  .hero-text { flex: 1; }
  .hero-text .badge { margin-bottom: 16px; }
  .hero-text h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--blue); line-height: 1.15; margin-bottom: 16px; }
  .hero-text h1 span { color: var(--teal); }
  .hero-text p { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 540px; }
  .hero-logo { flex-shrink: 0; }
  .hero-logo img { width: 180px; height: auto; opacity: .9; }

  /* ── Sections – frei schwebend ──────────────────── */
  .cat-section { margin-bottom: 56px; }

  .cat-section h2 { font-size:clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;text-align:center;line-height: 1.2; margin-bottom: 4px; }
  .cat-section h2 span {
    font-size: 80%;
    display: block;
    font-weight: 400;
    font-style: italic;
    transform: rotate(-1.337deg);
    background: #bbeee0;
    border-radius: 4px;
    max-width: 80vw;
    padding: 4px 8px;
    margin: 0 auto;
    width: fit-content;
  }
  .cat-section > p { font-size: 14px; color: var(--muted); line-height: 1.75; margin: 20px 0 24px;}

  /* ── Mini-Tabelle (gleicher Stil wie Unterseiten) ── */
  .vpn-home-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .vpn-home-table thead th {
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
  }
  .vpn-home-table thead th.c { text-align: center; }
  .vpn-home-table thead th:first-child { border-radius: 6px 0 0 0; }
  .vpn-home-table thead th:last-child  { border-radius: 0 6px 0 0; }
  .vpn-home-table tbody tr {
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    transition: background .15s, opacity .2s, transform .15s;
    position: relative;
    z-index: 1;
  }
  .vpn-home-table tbody tr:first-child { border-left: 4px solid var(--teal); }
  .vpn-home-table tbody tr:hover { background: var(--blue-light); z-index: 3; opacity: 1 !important; }
  .vpn-home-table tbody tr:last-child  { border-bottom: none; }

  /* Fade-Effekt auf Zeilen 2 und 3 */
  .vpn-home-table tbody tr:nth-child(2) { opacity: .55; }
  .vpn-home-table tbody tr:nth-child(3) { opacity: .25; }

  .vpn-home-table td { padding: 11px 12px; vertical-align: middle; }
  .vpn-home-table td.c { text-align: center; }
  .vpn-home-table td img { display: block; border-radius: 6px; }
  .vpn-home-table .vpn-name { font-weight: 700; color: var(--blue); font-size: 14px; }
  .vpn-home-table .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
  .vpn-home-table .price-cell { font-weight: 700; color: var(--blue); white-space: nowrap; }
  .vpn-home-table .btn-visit {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
    font-family: var(--font);
  }
  .vpn-home-table .btn-visit:hover { background: var(--blue-dark); }

  /* ── Fade-Overlay am unteren Rand ──────────────── */
  .vpn-fade-wrap { position: relative; }
  .vpn-fade-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 2;
  }

  /* ── CTA Button unten mittig ────────────────────── */
  .cat-cta-wrap { display: flex; justify-content: center; padding-top: 20px; }
  .cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 40px;
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, transform .15s;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
  }
  .cat-btn:hover { background: #333; transform: translateY(-1px); }
  .cat-btn-icon { width: 24px; height: 24px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cat-btn-icon svg { width: 14px; height: 14px; color: #1a1a1a; }

  @media (max-width: 768px) {
    .hero { flex-direction: column; gap: 24px; padding: 32px 16px; }
    .hero-logo img { width: 140px; }
    .vpn-home-table { display: none !important; }
    .cat-section { margin-bottom: 40px; }
  }

/* ══ Fastest VPN ══════════════════════════════════════ */
.vpn-full-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 32px; }
  .vpn-full-table thead th { background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 10px 12px; text-align: left; white-space: nowrap; }
  .vpn-full-table thead th.c { text-align: center; }
  .vpn-full-table thead th:first-child { border-radius: 6px 0 0 0; }
  .vpn-full-table thead th:last-child  { border-radius: 0 6px 0 0; }
  .vpn-full-table tbody tr { border-bottom: 1px solid var(--border); background: var(--surface); transition: background .15s; }
  .vpn-full-table tbody tr:hover { background: var(--blue-light); }
  .vpn-full-table tbody tr:first-child { border-left: 4px solid var(--teal); }
  .vpn-full-table td { padding: 12px; vertical-align: middle; }
  .vpn-full-table td.c { text-align: center; }
  .vpn-full-table td img { display: block; border-radius: 6px; }
  .vpn-n { font-weight: 700; color: var(--blue); font-size: 14px; }
  .rank-cell { font-size: 1.1rem; font-weight: 700; color: var(--muted2); text-align: center; }
  .rank-cell.gold { color: var(--gold); }
  .stars { color: var(--gold); letter-spacing: 1px; }
  .price-cell { font-weight: 700; color: var(--blue); white-space: nowrap; }
  .score-bar-wrap { display: flex; align-items: center; gap: 8px; }
  .score-bar { height: 6px; border-radius: 3px; background: var(--border); flex: 1; min-width: 60px; }
  .score-bar-fill { height: 100%; border-radius: 3px; background: var(--teal); }
  .score-num { font-size: 12px; font-weight: 700; color: var(--blue); min-width: 26px; }
  .tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin: 1px; }
  .btn-visit { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background .15s; font-family: var(--font); }
  .btn-visit:hover { background: var(--blue-dark); }
  @media (max-width: 768px) { .h { display: none; } }

/* ══ Cheapest VPN ══════════════════════════════════════ */
.vpn-full-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 32px; }
  .vpn-full-table thead th { background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 10px 12px; text-align: left; white-space: nowrap; }
  .vpn-full-table thead th.c { text-align: center; }
  .vpn-full-table thead th:first-child { border-radius: 6px 0 0 0; }
  .vpn-full-table thead th:last-child  { border-radius: 0 6px 0 0; }
  .vpn-full-table tbody tr { border-bottom: 1px solid var(--border); background: var(--surface); transition: background .15s; }
  .vpn-full-table tbody tr:hover { background: var(--blue-light); }
  .vpn-full-table tbody tr:first-child { border-left: 4px solid var(--teal); }
  .vpn-full-table td { padding: 12px; vertical-align: middle; }
  .vpn-full-table td.c { text-align: center; }
  .vpn-full-table td img { display: block; border-radius: 6px; }
  .vpn-n { font-weight: 700; color: var(--blue); font-size: 14px; }
  .rank-cell { font-size: 1.1rem; font-weight: 700; color: var(--muted2); text-align: center; }
  .rank-cell.gold { color: var(--gold); }
  .stars { color: var(--gold); letter-spacing: 1px; }
  .price-highlight { font-size: 1.1rem; font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
  .cashback-badge { display: inline-block; background: #fff3e0; border: 1px solid #ffcc80; color: #e65100; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-top: 3px; }
  .btn-visit { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background .15s; font-family: var(--font); }
  .btn-visit:hover { background: var(--blue-dark); }
  @media (max-width: 768px) { .h { display: none; } }

/* ══ Safest VPN ══════════════════════════════════════ */
.vpn-full-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 32px; }
  .vpn-full-table thead th { background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; padding: 10px 12px; text-align: left; white-space: nowrap; }
  .vpn-full-table thead th.c { text-align: center; }
  .vpn-full-table thead th:first-child { border-radius: 6px 0 0 0; }
  .vpn-full-table thead th:last-child  { border-radius: 0 6px 0 0; }
  .vpn-full-table tbody tr { border-bottom: 1px solid var(--border); background: var(--surface); transition: background .15s; }
  .vpn-full-table tbody tr:hover { background: var(--blue-light); }
  .vpn-full-table tbody tr:first-child { border-left: 4px solid var(--teal); }
  .vpn-full-table td { padding: 12px; vertical-align: middle; }
  .vpn-full-table td.c { text-align: center; }
  .vpn-full-table td img { display: block; border-radius: 6px; }
  .vpn-n { font-weight: 700; color: var(--blue); font-size: 14px; }
  .rank-cell { font-size: 1.1rem; font-weight: 700; color: var(--muted2); text-align: center; }
  .rank-cell.gold { color: var(--gold); }
  .stars { color: var(--gold); letter-spacing: 1px; }
  .check { color: var(--green); font-size: 15px; }
  .cross { color: var(--red); font-size: 15px; }
  .price-cell { font-weight: 700; color: var(--blue); white-space: nowrap; }
  .score-bar-wrap { display: flex; align-items: center; gap: 8px; }
  .score-bar { height: 6px; border-radius: 3px; background: var(--border); flex: 1; min-width: 60px; }
  .score-bar-fill { height: 100%; border-radius: 3px; background: var(--teal); }
  .score-num { font-size: 12px; font-weight: 700; color: var(--blue); min-width: 26px; }
  .btn-visit { display: inline-block; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background .15s; font-family: var(--font); }
  .btn-visit:hover { background: var(--blue-dark); }
  @media (max-width: 768px) { .h { display: none; } }