
:root{
  --am-primary:#1d4ed8; /* blue */
  --am-dark:#111827;    /* near-black */
  --am-muted:#94a3b8;   /* light gray */
  --am-bg:#f5f7fb;      /* soft blue-gray */
  --am-card-radius:18px;

  /* Override Bootstrap primary to match site */
  --bs-primary:#1d4ed8;
  --bs-primary-rgb:29,78,216;
}
html, body { overflow-x: hidden; }
body{
  color: var(--am-dark);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--am-bg);
}
a{ text-decoration: none; }
.logo-antivirus{ color: var(--am-primary); font-weight: 900; letter-spacing: .2px;}
.logo-matcher{ color: var(--am-dark); font-weight: 900; letter-spacing: .2px;}
.logo-nl{ color: var(--am-muted); font-weight: 800; letter-spacing: .2px;}
.navbar{ backdrop-filter: blur(10px); }
.hero{
  padding-top: 3.5rem;
  padding-bottom: 1.25rem; /* important: cards should start quickly on mobile */
}
.hero-card{
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,.06);
  background: radial-gradient(1200px 400px at 10% 0%, rgba(29,78,216,.10), transparent 60%), linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.section{
  padding: 3.25rem 0;
}
.section-tight{
  padding: 2.25rem 0;
}
.card-compare{
  border-radius: var(--am-card-radius);
  border: 1px solid rgba(17,24,39,.12);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  overflow: hidden;
}
.card-compare .badge-top{
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-logo{
  max-width: 190px;
  width: 100%;
  height: 52px;
  object-fit: contain;
  display:block;
  margin: 0 auto;
}
.brand-logo-wrap{min-height:56px; display:flex; align-items:center; justify-content:center;}
.lineclamp-2{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.lineclamp-3{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.feature-list li{
  margin-bottom: .35rem;
}
.feature-list i{ margin-right: 0 !important; }
.os-icons svg{
  width: 18px;
  height: 18px;
  opacity: .85;
}
.price{
  font-size: 1.05rem;
  font-weight: 800;
}
.price small{
  font-weight: 600;
  color: var(--am-muted);
}
.btn-cta{
  border-radius: 12px;
  padding: .75rem 1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(29,78,216,.12);
}
.table thead th{
  position: sticky;
  top: 0;
}
.table-compare{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.10);
}
.table-compare thead th{
  background: var(--am-primary);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.table-compare tbody td:nth-child(n+2), .table-compare thead th:nth-child(n+2){
  text-align: center;
  white-space: nowrap;
}
.table-compare tbody tr:hover{
  background: rgba(29,78,216,0.06);
}
.table-compare .na{
  color: rgba(17,24,39,.45);
  font-weight: 700;
}
.table-compare .pricecell{
  font-weight: 800;
  color: var(--am-dark);
}
.table-zebra tbody tr:nth-child(odd){
  background: rgba(13,110,253,0.03);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.12);
  background:#fff;
  font-size:.9rem;
  white-space: nowrap;
}
.footer{
  border-top: 1px solid rgba(0,0,0,.08);
}
.small-muted{ color: var(--am-muted); }
.no-wrap{ white-space: nowrap; }


/* --- v4 requested tweaks --- */
@media (max-width: 767.98px){
  .am-hide-mobile{ display:none !important; }
  .no-wrap{ white-space: normal !important; }
  .hero{ padding-top: 1.75rem; padding-bottom: .6rem; }
  .hero-card{ padding: 1.1rem !important; }
  /* keep the three pills in one row */
  .am-pill-row{ flex-wrap: nowrap !important; }
  .am-pill-row .pill{
    flex: 1 1 0;
    text-align: center;
    padding: .45rem .55rem;
    font-size: .85rem;
    white-space: nowrap;
  }
  .am-pill-row .pill .text-success{ display:none; } /* remove green dot on mobile for cleaner look */
}

/* Solid blue table header with column separators */
.table-compare thead th{
  background: var(--am-primary) !important;
}
.table-compare thead th + th{
  border-left: 2px solid rgba(255,255,255,.9);
}
.table-compare thead th{
  border-right: 0;
}
/* make dash a bit bolder */
.table-compare .text-muted.fw-semibold{ letter-spacing:.5px; }

/* Feature list with icon alignment */
.feature-list li{
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}
.feature-list li i{ margin-top: .1rem; }


/* Utility: hide on mobile */
@media (max-width: 767.98px){
  .hide-mobile{ display:none !important; }
}

/* Feature list: no left indent, icon + text aligned */
.feature-list{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.feature-list li{
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .35rem;
}
.feature-list li i{
  margin-top: .1rem;
  flex: 0 0 auto;
}

/* Trust boxes */
.trust-icon i{
  font-size: 1.6rem;
}
.trust-box{
  background: #fff;
}

/* Comparison table header dividers */
.table-compare thead th + th{
  border-left: 2px solid rgba(255,255,255,.95);
}
.table-compare tbody td + td{
  border-left: 1px solid rgba(17,24,39,.06);
}

/* Tiny CTA inside table */
.table-cta{
  font-size: .75rem;
  padding: .25rem .5rem;
  border-radius: 10px;
}

/* Make pills row one-line on larger screens, but hidden on mobile */
.am-pill-row{
  flex-wrap: nowrap;
}


/* Centered icons for beoordelings-boxen */
.am-icon{display:flex; align-items:center; justify-content:center;}
.am-icon i{font-size:1.35rem; color:var(--am-primary);}


/* Score block in offer cards */
.score-block{margin-top:.35rem;margin-bottom:.5rem;}
.score-number{font-weight:800;font-size:1.05rem;line-height:1.1;color:var(--am-dark);margin-bottom:8px;}
.score-logos{margin-bottom:10px;}
.score-logo{height:18px;width:auto;display:block;}
.score-note{font-size:.78rem;line-height:1.25;color:#64748b;margin:0;}


/* Trust logos strip */
.trust-strip{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 14px 16px;
}
.trust-label{
  letter-spacing: .08em;
  color: rgba(17,24,39,.7);
}
.trust-logo{
  height: 26px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(105%);
  opacity: .85;
}
.trust-logo:hover{
  filter: grayscale(0%) contrast(110%);
  opacity: 1;
  transition: all .2s ease;
}
.offer-note{
  margin-top: 4px;
  line-height: 1.2;
}
.hero-motivation{
  line-height: 1.4;
}

/* Prevent updated line from overflowing on mobile */
.lead span.js-month-year{
  white-space: normal;
}


/* Score logos inside product cards */
.score-logo{
  height: 20px;
  width: auto;
  display: inline-block;
  opacity: .9;
}
@media (max-width: 575.98px){
  .score-logo{ height: 18px; }
}

/* Mobile typography tuning */
@media (max-width: 576px){
  .hero h1{ font-size:20px !important; line-height:1.25 !important; }
  .hero p.lead{ font-size:16px !important; line-height:1.45 !important; }
  .brand-logo-wrap + div > .fw-bold{ font-size:18px !important; }
}

.hero-motivation{color: inherit;}


/* --- Final polish v10 --- */
@media (max-width: 576px){
  /* Make hero box padding feel symmetrical on mobile */
  .hero .hero-card{ padding: 1.25rem !important; }
}

.scroll-hint{
  display:flex;
  align-items:center;
  gap:.4rem;
  color: rgba(17,24,39,.72);
  font-size:.9rem;
}
.scroll-hint i{
  font-size:1rem;
  color: rgba(37,99,235,.85);
}
