/* ========== Base ========== */
:root{
  --text:#111827;
  --muted:#4b5563;
  --line:#e5e7eb;
  --bg:#ffffff;
  --shadow: 0 10px 30px rgba(17,24,39,.10);
  --shadow-soft: 0 12px 28px rgba(17,24,39,.06);
  --green:#0f8a3b;
  --green-dark:#0b6f2f;
  --blue:#1f8ed8;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

/* ========== Topbar ========== */
.topbar{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid rgba(229,231,235,.7);
  z-index:20;
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
}

.brand__logo{
  height:45px; /* jouw gewenste maat */
  width:auto;
  display:block;
}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:14px;
  color:#111827;
}
.nav a{ opacity:.85; }
.nav a:hover{ opacity:1; text-decoration:none; }

.topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
}

.lang{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
}
.lang__caret{ font-size:12px; opacity:.6; }

.nav__hamburger{
  display:none;
  width:44px;
  height:40px;
  border:1px solid rgba(229,231,235,.9);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  padding:0 10px;
}
.nav__hamburger span{
  display:block;
  height:2px;
  background:#111827;
  margin:5px 0;
  border-radius:999px;
  opacity:.8;
}

/* ========== Hero ========== */
.hero{
  padding:44px 0 20px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  align-items:center;
  gap:32px;
}

.hero__content h1{
  font-size:44px;
  line-height:1.08;
  margin:0 0 18px;
  letter-spacing:-.8px;
}

.hero__lead{
  margin:0 0 22px;
  color:var(--muted);
  max-width:52ch;
  font-size:15px;
  line-height:1.6;
}
.hero__lead a{
  color:#2563eb;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.hero__cta{
  margin:10px 0 18px;
}

/* Button */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:12px;
  font-weight:800;
  letter-spacing:.2px;
  padding:18px 26px;      /* grotere knop */
  border:1px solid transparent;
  box-shadow: 0 14px 28px rgba(15,138,59,.22);
}

.btn--primary{
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color:#fff;
}
.btn--primary:hover{
  filter: brightness(.98);
  text-decoration:none;
}

/* Windows icon */
.btn__icon--windows{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn__icon--windows svg{
  width:18px;
  height:18px;
  color:#ffffff;
}

.hero__trust{
  display:flex;
  align-items:center;
  gap:26px;
  margin-top:10px;
  color:#6b7280;
  font-size:13px;
}

.badge{
  display:flex;
  align-items:center;
  gap:10px;
}
.badge__img{
  width:38px; height:26px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111827;
  color:#fff;
  font-weight:800;
  font-size:12px;
}
.badge__title{ font-weight:800; color:#111827; font-size:12px; }
.badge__sub{ font-size:12px; }

/* ========== Hero Visual (right) ========== */
.hero__visual{
  position:relative;
  min-height:340px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.blob{
  position:absolute;
  right:-22px;
  top:-22px;
  width:420px;
  height:420px;
  background: radial-gradient(closest-side, rgba(31,142,216,.92), rgba(31,142,216,.92));
  border-radius: 55% 45% 52% 48% / 52% 52% 48% 48%;
  filter: saturate(1.05);
}

/* Laptop mock */
.laptop{
  position:relative;
  width:420px;
  max-width:100%;
  z-index:2;
  transform: translateY(6px);
}

.laptop__screen{
  background: #0b1220;
  border-radius:14px;
  padding:10px 10px 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
}

.laptop__topbar{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  margin-bottom:10px;
}

.laptop__tiles{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.tile{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px;
  min-height:58px;
  color:rgba(255,255,255,.86);
  font-size:12px;
}
.tile--ok{
  grid-column: 1 / -1;
  display:flex;
  align-items:center;
  gap:10px;
}
.tile__dot{
  width:10px;height:10px;border-radius:999px;
  background:#22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}
.tile__t{ font-weight:600; opacity:.95; }

.laptop__button{
  margin-top:12px;
  background:#22c55e;
  color:#04210f;
  font-weight:900;
  letter-spacing:.3px;
  font-size:12px;
  text-align:center;
  padding:10px 12px;
  border-radius:12px;
}

.laptop__base{
  height:22px;
  background: linear-gradient(180deg, #d1d5db, #9ca3af);
  border-radius: 0 0 18px 18px;
  margin:8px auto 0;
  width:92%;
  box-shadow: 0 16px 26px rgba(17,24,39,.12);
}

.check{
  position:absolute;
  right:10px;
  top:44px;
  width:62px;
  height:62px;
  border-radius:999px;
  background:#34d399;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:900;
  color:#06301b;
  box-shadow: 0 16px 30px rgba(52,211,153,.28);
}

/* ========== USP strip ========== */
.usp{
  margin-top:36px;
}

.usp__inner{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:14px;
  box-shadow: var(--shadow-soft);
  padding:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.usp__item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px;
  border-radius:12px;
}

.usp__icon{
  width:40px;height:40px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(16,185,129,.10);
  border:1px solid rgba(16,185,129,.20);
  font-size:18px;
}

.usp__title{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.usp__sub{
  font-size:12px;
  color:#6b7280;
  margin-top:2px;
}

/* ========== Section ========== */
.section{
  padding:26px 0 64px;
}

/* ========== Banks slider ========== */
.banks{
  border:1px solid rgba(229,231,235,.9);
  border-radius:14px;
  background:#fff;
  box-shadow: var(--shadow-soft);
  padding:22px;
  overflow:hidden;              /* ✅ voorkomt uitschieten */
}

.banks__head{
  text-align:center;
  margin-bottom:14px;
}

.banks__head h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.3px;
}

/* viewport clipt ALTIJD */
.banks__viewport{
  width:100%;
  overflow:hidden;              /* ✅ clip */
}

/* track is breed en beweegt */
.banks__track{
  display:flex;
  align-items:center;
  gap:16px;
  width:max-content;
  padding:6px 4px;
}

/* logo cards */
.banklogo{
  flex:0 0 auto;
  width:180px;
  height:72px;
  border-radius:12px;
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
}

.banklogo__img{
  max-width:150px;
  max-height:44px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:1;
  filter:none;                  /* ✅ altijd kleur */
}

/* ========== Responsive ========== */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ order:2; min-height:320px; }
  .blob{ right:-60px; top:-40px; width:380px; height:380px; }
  .usp__inner{ grid-template-columns: 1fr 1fr; }
  .nav{ display:none; }
  .nav__hamburger{ display:inline-block; }
}

@media (max-width: 560px){
  .hero__content h1{ font-size:34px; }
  .usp__inner{ grid-template-columns: 1fr; }
  .container{ width:min(var(--container), calc(100% - 30px)); }
  .banklogo{ width:150px; height:64px; }
  .banklogo__img{ max-height:38px; }
}

@media (max-width: 420px){
  .hero__content h1{ font-size:30px; line-height:1.15; }
  .hero__lead{ font-size:14px; }
  .btn--primary{ width:100%; justify-content:center; padding:18px; }
}


/* Section: 6 cards */
.sec6{
  padding: 44px 0 64px;
  background:#fff;
}

.sec6__title{
  text-align:center;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin: 0 0 28px;
}

.sec6__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.sec6__card{
  background:#fff;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 20px rgba(17,24,39,.05);
  min-height: 210px;
}

.sec6__cardTop{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  margin-bottom: 10px;
}

/* Icon box (subtle like screenshot) */
.sec6__icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(229,231,235,.9);
  background: #f8fafc;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
  flex: 0 0 44px;
}

.sec6__icon svg{
  width: 24px;
  height: 24px;
  opacity: .9;
}

/* Title */
.sec6__cardTitle{
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  color:#111827;
}

/* Body text */
.sec6__cardText{
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: #6b7280;
  max-width: 52ch;
}

/* Responsive */
@media (max-width: 980px){
  .sec6__grid{ grid-template-columns: repeat(2, 1fr); }
  .sec6__title{ font-size: 30px; }
}

@media (max-width: 560px){
  .sec6__grid{ grid-template-columns: 1fr; }
  .sec6__title{ font-size: 26px; }
}

/* ===== Bottom image above footer ===== */
.avg-bottom-hero{
  width: 100%;
  background: #f6f7fb;
  overflow: hidden;
}
.avg-bottom-hero img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Footer ===== */
.avg-footer{
  background: #151b23; /* donker zoals screenshot */
  color: rgba(255,255,255,.86);
  padding: 46px 0 36px;
}

.avg-footer__inner{
  max-width: 1120px;
}

.avg-footer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.avg-footer__logo{
  height: 28px;
  width: auto;
  display:block;
  filter: brightness(1.05);
}

.avg-footer__meta{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
}

.avg-footer__lang{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.9);
  cursor:pointer;
  font-size: 12px;
}

.avg-footer__caret{
  opacity:.75;
  font-size: 12px;
}

.avg-footer__account{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.avg-footer__account:hover{
  text-decoration: underline;
  color: rgba(255,255,255,.92);
}

.avg-footer__rule{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 18px 0 20px;
}

.avg-footer__gen{
  display:flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.avg-footer__gen strong{
  color: rgba(255,255,255,.92);
  font-size: 16px;
  margin-top: 2px;
}
.avg-footer__gen p{
  margin:0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.65;
  max-width: 72ch;
}

.avg-footer__legal p{
  margin:0 0 18px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  line-height: 1.7;
  max-width: 110ch;
}

.avg-footer__links{
  display:flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: 8px;
}

.avg-footer__links a{
  font-size: 11px;
  color: rgba(255,255,255,.62);
  text-decoration:none;
}
.avg-footer__links a:hover{
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive footer */
@media (max-width: 720px){
  .avg-footer__top{
    flex-direction: column;
    align-items:flex-start;
  }
  .avg-footer__meta{
    gap: 10px;
  }
}

/* Bottom image boven footer kleiner maken */
.avg-bottom-hero{
  background: #f6f7fb;
  overflow: hidden;
  max-height: 260px;       /* ← PAS DIT AAN (bv. 220–300px) */
  display: flex;
  align-items: flex-end;   /* beeld blijft onderin zoals AVG */
  justify-content: center;
}

.avg-bottom-hero img{
  width: 100%;
  max-width: 1400px;       /* voorkomt te groot op ultra-wide */
  height: auto;
  display: block;
}
