/*
Theme Name:   GeneratePress Child
Description:  WordPress4You child theme
Author:       WordPress4You
Template:     generatepress
Version:      1.0.0
*/

/* =============================================
   STICKY HEADER
   ============================================= */

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.3) !important;
}

/* =============================================
   GENERATEPRESS OVERRIDES — full-width layout
   ============================================= */

/* Remove GeneratePress container max-width for homepage sections */
body.page-template-page-home-php .site-content,
body.page-template-page-home-php .content-area,
body.page-template-page-home-php .site-main,
body.page-template-page-home-php article,
body.page-template-page-home-php .entry-content,
body.page-template-page-home-php .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-home-php .entry-header,
body.page-template-page-home-php .entry-footer,
body.page-template-page-home-php .post-image {
  display: none !important;
}

/* Full-bleed breakout — breekt uit elke parent container */
#wp4u-home {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */

.site-header,
.site-header .inside-header,
.main-navigation,
.main-navigation ul,
.main-navigation ul li,
.nav-float-right .main-navigation {
  background: var(--navy) !important;
}

.site-header .site-title a,
.site-header .site-title {
  color: var(--white) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

/* Nav links */
.main-navigation a,
.main-navigation .menu-item a,
.main-navigation ul li a {
  color: rgba(255,255,255,.8) !important;
  font-weight: 600 !important;
  font-size: .9rem !important;
  background: transparent !important;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--cyan) !important;
  background: transparent !important;
}

/* Dropdown */
.main-navigation .sub-menu {
  background: var(--navy-dark) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}

.main-navigation .sub-menu a {
  color: rgba(255,255,255,.75) !important;
  background: transparent !important;
}

/* =============================================
   BRAND TOKENS
   ============================================= */
:root {
  --navy:       #16166E;
  --navy-dark:  #0F0F52;
  --navy-mid:   #1E1E8A;
  --blue:       #4361EE;
  --blue-light: #6B84F5;
  --cyan:       #00D4FF;
  --cyan-dark:  #00AACF;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FF;
  --gray-100:   #EEF0FB;
  --gray-400:   #94A3B8;
  --gray-700:   #334155;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 4px 24px rgba(22,22,110,.10);
  --shadow-lg:  0 12px 48px rgba(22,22,110,.18);
}

/* =============================================
   RESET / BASE
   ============================================= */
#wp4u-home * { box-sizing: border-box; }
#wp4u-home a { text-decoration: none; color: inherit; }

.wp4u-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HERO
   ============================================= */
.wp4u-hero {
  position: relative;
  background: var(--navy);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Dot-grid pattern */
.wp4u-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(67,97,238,.25) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Glow blob */
.wp4u-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.wp4u-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.wp4u-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: .3px;
}

.wp4u-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -.5px;
}

.wp4u-accent {
  color: var(--cyan);
}

.wp4u-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 580px;
}

.wp4u-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Buttons */
.wp4u-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
}

.wp4u-btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(67,97,238,.4);
}

.wp4u-btn--primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(67,97,238,.5);
}

.wp4u-btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}

.wp4u-btn--ghost:hover {
  background: rgba(255,255,255,.14);
}

/* Stats */
.wp4u-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.wp4u-stat {
  display: flex;
  flex-direction: column;
}

.wp4u-stat strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.wp4u-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}

.wp4u-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* =============================================
   SECTIONS
   ============================================= */
.wp4u-section {
  padding: 80px 0;
}

.wp4u-section--white  { background: var(--white); }
.wp4u-section--gray   { background: var(--gray-50); }
.wp4u-section--navy   { background: var(--navy); }

.wp4u-section--gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a1a9a 100%);
  position: relative;
  overflow: hidden;
}

.wp4u-section--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(67,97,238,.2) 1px, transparent 1px);
  background-size: 28px 28px;
}

.wp4u-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.wp4u-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: -.3px;
}

.wp4u-section-header p {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.wp4u-section-header--light h2 {
  color: var(--white);
}

/* Labels */
.wp4u-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.wp4u-label--cyan { color: var(--cyan); }

/* =============================================
   TOOLS GRID
   ============================================= */
.wp4u-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.wp4u-tool-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .2s;
  box-shadow: var(--shadow);
}

.wp4u-tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(67,97,238,.2);
}

.wp4u-tool-card--featured {
  border-color: var(--blue);
  background: linear-gradient(145deg, #fafbff, #f0f3ff);
  box-shadow: 0 4px 32px rgba(67,97,238,.14);
}

.wp4u-tool-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.wp4u-tool-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wp4u-tool-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
}

.wp4u-tool-card p {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 16px;
}

.wp4u-tool-card__cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
}

/* Pills */
.wp4u-pill {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 99px;
  letter-spacing: .3px;
}

.wp4u-pill--blue {
  background: rgba(67,97,238,.1);
  color: var(--blue);
}

.wp4u-pill--cyan {
  background: rgba(0,212,255,.12);
  color: var(--cyan-dark);
}

/* =============================================
   CATEGORIES GRID
   ============================================= */
.wp4u-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.wp4u-cat-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all .2s;
}

.wp4u-cat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(0,212,255,.3);
  transform: translateY(-2px);
}

.wp4u-cat-card__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.wp4u-cat-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
}

.wp4u-cat-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   WHY SECTION
   ============================================= */
.wp4u-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .wp4u-why-grid { grid-template-columns: 1fr; gap: 40px; }
}

.wp4u-why__left .wp4u-label { margin-bottom: 10px; }

.wp4u-why__left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -.3px;
}

.wp4u-why__intro {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.wp4u-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wp4u-check-list li {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Score Card */
.wp4u-score-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.wp4u-score-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.wp4u-score-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 32px rgba(0,212,255,.3);
}

.wp4u-score-ring span {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
}

.wp4u-score-card > p {
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin: 0 0 24px;
}

.wp4u-score-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wp4u-score-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
}

.wp4u-score-bar span { color: rgba(255,255,255,.6); }
.wp4u-score-bar strong { color: var(--cyan); font-size: .85rem; }

.wp4u-bar {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  overflow: hidden;
  width: 80px;
}

.wp4u-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 99px;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.wp4u-newsletter {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.wp4u-newsletter h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin: 8px 0 12px;
}

.wp4u-newsletter p {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}

.wp4u-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.wp4u-newsletter__form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: none;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  border: 1.5px solid rgba(255,255,255,.15);
}

.wp4u-newsletter__form input::placeholder { color: rgba(255,255,255,.4); }
.wp4u-newsletter__form input:focus { border-color: var(--cyan); }

.wp4u-newsletter__form button {
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}

.wp4u-newsletter__form button:hover {
  background: #33DCFF;
  transform: translateY(-1px);
}

.wp4u-newsletter__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* =============================================
   KOSTENMETER
   ============================================= */

body.page-template-page-kostenmeter-php .site-content,
body.page-template-page-kostenmeter-php .content-area,
body.page-template-page-kostenmeter-php .site-main,
body.page-template-page-kostenmeter-php article,
body.page-template-page-kostenmeter-php .entry-content,
body.page-template-page-kostenmeter-php .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-kostenmeter-php .entry-header,
body.page-template-page-kostenmeter-php .entry-footer {
  display: none !important;
}

#wp4u-kostenmeter {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}

.km-hero {
  position: relative;
  background: var(--navy);
  padding: 60px 0 50px;
  overflow: hidden;
}

.km-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(67,97,238,.2) 1px, transparent 1px);
  background-size: 28px 28px;
}

.km-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 8px 0 12px;
  position: relative;
}

.km-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
}

.km-calculator {
  background: var(--gray-50);
  padding: 60px 0;
}

.km-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .km-grid { grid-template-columns: 1fr; }
}

/* Steps */
.km-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  border: 1.5px solid var(--gray-100);
  box-shadow: var(--shadow);
}

.km-step__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.km-step__num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.km-step__header h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

/* Options */
.km-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.km-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
}

.km-option input { display: none; }

.km-option:hover {
  border-color: rgba(67,97,238,.3);
  background: #f5f7ff;
}

.km-option--active {
  border-color: var(--blue) !important;
  background: rgba(67,97,238,.05) !important;
}

.km-option__icon { font-size: 1.4rem; }

.km-option__label {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  display: block;
}

.km-option__sub {
  font-size: .78rem;
  color: var(--gray-400);
  display: block;
}

/* Checkboxes */
.km-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.km-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
  font-size: .9rem;
  color: var(--navy);
}

.km-check:hover { border-color: rgba(67,97,238,.3); background: #f5f7ff; }

.km-check input { accent-color: var(--blue); }

.km-check__price {
  margin-left: auto;
  font-size: .78rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Result card */
.km-result { position: sticky; top: 90px; }

.km-result__card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.km-result__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: .95rem;
}

.km-result__eenmalig,
.km-result__maand,
.km-result__jaar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.km-result__label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.km-result__amount {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.km-result__amount--main {
  font-size: 1.5rem;
  color: var(--cyan);
}

.km-result__breakdown {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.km-bd-row {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

.km-result__tip {
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin: 16px 0;
  line-height: 1.5;
}

.km-result__cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  transition: all .2s;
}

.km-result__cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* =============================================
   AI PLUGIN ADVISOR
   ============================================= */

body.page-template-page-plugin-advisor-php .site-content,
body.page-template-page-plugin-advisor-php .content-area,
body.page-template-page-plugin-advisor-php .site-main,
body.page-template-page-plugin-advisor-php article,
body.page-template-page-plugin-advisor-php .entry-content,
body.page-template-page-plugin-advisor-php .inside-article {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-template-page-plugin-advisor-php .entry-header,
body.page-template-page-plugin-advisor-php .entry-footer { display: none !important; }

#wp4u-advisor {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}

.adv-hero {
  position: relative;
  background: var(--navy);
  padding: 60px 0 50px;
  overflow: hidden;
}

.adv-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(67,97,238,.2) 1px, transparent 1px);
  background-size: 28px 28px;
}

.adv-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin: 8px 0 12px;
  position: relative;
}

.adv-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
}

.adv-body {
  background: var(--gray-50);
  padding: 60px 0;
}

.adv-grid {
  max-width: 780px;
  margin: 0 auto;
}

/* Progress */
.adv-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.adv-progress__bar {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 99px;
  overflow: hidden;
}

.adv-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 99px;
  transition: width .4s ease;
  width: 0%;
}

.adv-progress span {
  font-size: .8rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* Steps */
.adv-step { display: none; }
.adv-step.active { display: block; }

.adv-step h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 6px;
}

.adv-sub {
  font-size: .85rem;
  color: var(--gray-400);
  margin: 0 0 16px;
}

.adv-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.adv-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: all .15s;
  box-shadow: var(--shadow);
}

.adv-opt:hover {
  border-color: var(--blue);
  background: rgba(67,97,238,.04);
  transform: translateX(4px);
}

.adv-opt.active {
  border-color: var(--blue);
  background: rgba(67,97,238,.08);
}

.adv-opts--multi .adv-opt { cursor: pointer; }

.adv-next-btn {
  margin-top: 16px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}

.adv-next-btn:hover { background: var(--blue-light); }

/* Result */
.adv-result__card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.adv-result__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 24px;
}

.adv-result__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
  color: rgba(255,255,255,.6);
}

.adv-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.adv-result__content {
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-size: .93rem;
}

.adv-result__content h3 {
  color: var(--cyan);
  font-size: 1rem;
  margin: 20px 0 8px;
}

.adv-result__content ul {
  padding-left: 18px;
  margin: 8px 0;
}

.adv-result__content li { margin-bottom: 6px; }
.adv-result__content strong { color: var(--white); }
.adv-result__content p { margin: 8px 0; }

.adv-restart {
  margin-top: 24px;
  padding: 10px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}

.adv-restart:hover { background: rgba(255,255,255,.15); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .wp4u-hero { padding: 60px 0 50px; }
  .wp4u-hero__ctas { flex-direction: column; }
  .wp4u-newsletter__form { flex-direction: column; }
  .wp4u-tools-grid { grid-template-columns: 1fr; }
  .wp4u-cats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   ARCHIEF / CATEGORIE PAGINA'S
   ============================================= */

/* Categorie header */
body.archive .site-header,
body.category .site-header { position: sticky !important; top: 0 !important; z-index: 999 !important; }

.wp4u-archive-hero {
  background: linear-gradient(135deg, #16166E 0%, #4361EE 100%);
  padding: 56px 0 48px;
  margin-bottom: 48px;
}
.wp4u-archive-hero .wp4u-container { text-align: center; }
.wp4u-archive-hero .archive-label {
  display: inline-block; background: rgba(255,255,255,.15); color: #00D4FF;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.wp4u-archive-hero h1 { color: #fff; font-size: clamp(1.6rem,4vw,2.4rem); margin: 0 0 10px; }
.wp4u-archive-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* Post cards grid */
body.archive .site-main,
body.category .site-main {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 80px;
}

body.archive .content-area,
body.category .content-area { width: 100% !important; float: none !important; }

.wp4u-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

/* Individuele post card */
body.archive article.hentry,
body.category article.hentry {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  padding: 0;
  margin: 0;
}
body.archive article.hentry:hover,
body.category article.hentry:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

body.archive .entry-header,
body.category .entry-header { padding: 24px 24px 0; }

body.archive .entry-title,
body.category .entry-title { font-size: 1.1rem; margin: 0 0 10px; line-height: 1.4; }

body.archive .entry-title a,
body.category .entry-title a { color: #16166E; text-decoration: none; }
body.archive .entry-title a:hover,
body.category .entry-title a:hover { color: #4361EE; }

body.archive .entry-meta,
body.category .entry-meta {
  padding: 0 24px; font-size: .78rem; color: #94a3b8; margin-bottom: 10px;
}
body.archive .entry-meta a,
body.category .entry-meta a { color: #94a3b8; text-decoration: none; }

body.archive .entry-summary,
body.category .entry-summary {
  padding: 0 24px; font-size: .88rem; color: #64748b;
  line-height: 1.65; flex: 1;
}
body.archive .entry-summary p { margin: 0 0 8px; }

/* Lees meer link */
body.archive .entry-footer,
body.category .entry-footer { padding: 16px 24px 24px; }

body.archive .entry-footer a,
body.category .entry-footer a {
  display: inline-flex; align-items: center; gap: 6px;
  color: #4361EE; font-size: .85rem; font-weight: 600;
  text-decoration: none;
}
body.archive .entry-footer a::after { content: '→'; }
body.archive .entry-footer a:hover { color: #16166E; }

/* Categorie badge op card */
body.archive .cat-links,
body.category .cat-links {
  display: inline-block; background: #e0e7ff; color: #3730a3;
  font-size: .72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 8px; text-decoration: none !important;
}
body.archive .cat-links a,
body.category .cat-links a { color: #3730a3 !important; text-decoration: none !important; }

/* Sidebar verbergen op archief */
body.archive .widget-area,
body.category .widget-area { display: none; }

/* Pagination */
body.archive .pagination,
body.category .pagination {
  display: flex; justify-content: center; gap: 8px;
  margin: 40px 0 0;
}
body.archive .pagination .page-numbers,
body.category .pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 2px solid #e2e8f0; color: #374151; font-weight: 600;
  text-decoration: none; font-size: .9rem; transition: all .2s;
}
body.archive .pagination .page-numbers:hover,
body.category .pagination .page-numbers:hover {
  border-color: #4361EE; color: #4361EE; background: #f0f4ff;
}
body.archive .pagination .page-numbers.current,
body.category .pagination .page-numbers.current {
  background: #4361EE; border-color: #4361EE; color: #fff;
}

/* =============================================
   ARTIKELEN — betere opmaak
   ============================================= */

/* Artikel hero-gebied */
body.single .entry-header {
  background: linear-gradient(135deg, #16166E 0%, #4361EE 100%);
  padding: 56px 0 48px; margin-bottom: 0;
  text-align: center;
}
body.single .entry-header .entry-title {
  color: #fff; font-size: clamp(1.5rem,4vw,2.2rem);
  max-width: 760px; margin: 0 auto 16px; line-height: 1.3;
}
body.single .entry-meta { color: rgba(255,255,255,.7); font-size: .85rem; }
body.single .entry-meta a { color: rgba(255,255,255,.85); }

/* Content breedte */
body.single .entry-content {
  max-width: 760px; margin: 48px auto; padding: 0 24px;
  font-size: 1rem; line-height: 1.8; color: #374151;
}

/* Code blocks */
body.single .entry-content pre,
body.single .wp-block-code {
  background: #0f172a !important; border-radius: 12px !important;
  padding: 20px 24px !important; overflow-x: auto;
  margin: 24px 0 !important; border: none !important;
}
body.single .entry-content pre code,
body.single .wp-block-code code {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: .83rem; line-height: 1.7; color: #e2e8f0 !important;
  background: none !important; padding: 0 !important;
}

/* Inline code */
body.single .entry-content p code,
body.single .entry-content li code {
  background: #f1f5f9; color: #c026d3;
  padding: 2px 7px; border-radius: 5px;
  font-size: .85em; font-family: 'Fira Code', monospace;
}

/* Tabellen */
body.single .wp-block-table table {
  width: 100%; border-collapse: collapse;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin: 24px 0;
}
body.single .wp-block-table th {
  background: #16166E; color: #fff;
  padding: 12px 16px; font-size: .88rem; text-align: left;
}
body.single .wp-block-table td {
  padding: 12px 16px; border-bottom: 1px solid #f1f5f9;
  font-size: .88rem; color: #374151;
}
body.single .wp-block-table tr:nth-child(even) td { background: #f8faff; }
body.single .wp-block-table tr:last-child td { border-bottom: none; }

/* Lijsten */
body.single .entry-content ul,
body.single .entry-content ol {
  padding-left: 1.4em; margin: 16px 0;
}
body.single .entry-content li { margin-bottom: 6px; }

/* Headings */
body.single .entry-content h2 {
  font-size: 1.5rem; color: #16166E;
  margin: 40px 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid #e0e7ff;
}
body.single .entry-content h3 {
  font-size: 1.15rem; color: #1e293b; margin: 28px 0 12px;
}

/* Links */
body.single .entry-content a { color: #4361EE; }
body.single .entry-content a:hover { color: #16166E; }

/* Verberg sidebar op artikelen */
body.single .widget-area { display: none; }
body.single .content-area { width: 100% !important; float: none !important; }

/* =============================================
   NIEUWSBRIEF INLINE (na artikelen)
   ============================================= */
.wp4u-nl-inline {
  margin: 3rem 0 2rem;
  background: #0f0f4a;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0,212,255,.15);
}

.wp4u-nl-inline__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.wp4u-nl-inline__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.wp4u-nl-inline__text {
  flex: 1;
  min-width: 180px;
}

.wp4u-nl-inline__text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.wp4u-nl-inline__text span {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

.wp4u-nl-inline__form {
  margin: 0 !important;
  flex-shrink: 0;
}

/* Gedeelde form-states */
.wp4u-nl-success {
  color: #00D4FF;
  font-weight: 700;
  font-size: .95rem;
  margin: 0;
}

.wp4u-nl-msg {
  font-size: .82rem;
  margin-top: 6px;
  min-height: 1.1em;
  color: rgba(255,255,255,.55);
}

@media (max-width: 640px) {
  .wp4u-nl-inline { padding: 1.25rem; }
  .wp4u-nl-inline__inner { flex-direction: column; align-items: flex-start; }
  .wp4u-nl-inline__form { width: 100%; }
  .wp4u-nl-inline__form input { width: 100%; }
}

/* =============================================
   HIDE DEFAULT GENERATEPRESS FOOTER
   ============================================= */
.site-footer { display: none !important; }

/* =============================================
   CUSTOM FOOTER
   ============================================= */
.wp4u-site-footer {
  background: #0a0a3a;
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
  margin-top: 0;
  font-size: .9rem;
}

.wp4u-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 48px;
}

.wp4u-footer__logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.wp4u-footer__logo span { color: #00D4FF; }

.wp4u-footer__col--brand p {
  line-height: 1.7;
  margin-bottom: 8px;
}

.wp4u-footer__made a {
  color: #00D4FF;
  text-decoration: none;
  font-weight: 600;
}

.wp4u-footer__col h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.wp4u-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp4u-footer__col ul li { margin-bottom: 10px; }

.wp4u-footer__col ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}

.wp4u-footer__col ul li a:hover { color: #00D4FF; }

.wp4u-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

@media (max-width: 900px) {
  .wp4u-footer__grid { grid-template-columns: 1fr 1fr; }
  .wp4u-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wp4u-footer__grid { grid-template-columns: 1fr; }
  .wp4u-footer__bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   SOCIAL SHARING BUTTONS
   ============================================= */
.wp4u-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #f8f9ff;
  border-radius: 12px;
  border: 1px solid #e8eaf6;
}

.wp4u-share__label {
  font-size: .85rem;
  font-weight: 700;
  color: #555;
  margin-right: 4px;
}

.wp4u-share__btn {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  color: #fff;
}

.wp4u-share__btn:hover { opacity: .85; transform: translateY(-1px); color: #fff; }
.wp4u-share__btn--fb { background: #1877F2; }
.wp4u-share__btn--wa { background: #25D366; }
.wp4u-share__btn--li { background: #0A66C2; }
.wp4u-share__btn--tw { background: #000; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.wp4u-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 700px;
  background: #16166E;
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  z-index: 99999;
  font-size: .875rem;
}

.wp4u-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wp4u-cookie-banner__inner p {
  flex: 1;
  margin: 0;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}

.wp4u-cookie-banner__inner a { color: #00D4FF; }

.wp4u-cookie-banner__btns { display: flex; gap: 8px; flex-shrink: 0; }

.wp4u-cookie-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: none;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
}

.wp4u-cookie-btn:hover { opacity: .85; }
.wp4u-cookie-btn--accept { background: #00D4FF; color: #0a0a3a; }
.wp4u-cookie-btn--decline { background: rgba(255,255,255,.15); color: #fff; }

@media (max-width: 560px) {
  .wp4u-cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   PAGE HERO (Over / Contact / Privacy)
   ============================================= */
.wp4u-page-hero {
  background: linear-gradient(135deg, #16166E 0%, #1a1a8c 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.wp4u-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 16px;
}

.wp4u-page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
}

/* =============================================
   OVER PAGINA
   ============================================= */
.wp4u-over__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.wp4u-over__content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #16166E;
  margin: 2rem 0 .75rem;
}

.wp4u-over__content h2:first-child { margin-top: 0; }

.wp4u-over__content p { line-height: 1.8; color: #444; margin-bottom: 1rem; }

.wp4u-over__card {
  background: #f8f9ff;
  border: 1px solid #e8eaf6;
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.wp4u-over__card-icon { font-size: 2rem; margin-bottom: 10px; }
.wp4u-over__card h3 { font-size: 1rem; font-weight: 700; color: #16166E; margin-bottom: 8px; }
.wp4u-over__card p  { font-size: .875rem; color: #555; line-height: 1.6; margin-bottom: 12px; }

.wp4u-btn--sm { padding: 8px 16px; font-size: .82rem; }

.wp4u-score-ring--sm {
  width: 70px; height: 70px; font-size: 1.4rem;
  margin: 0 auto 10px;
}

@media (max-width: 860px) {
  .wp4u-over__grid { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT PAGINA
   ============================================= */
.wp4u-contact__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.wp4u-contact-form { max-width: 600px; }

.wp4u-form-row { margin-bottom: 1.25rem; }

.wp4u-form-row label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.wp4u-form-row input,
.wp4u-form-row select,
.wp4u-form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde1f0;
  border-radius: 10px;
  font-size: .95rem;
  color: #222;
  background: #fff;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}

.wp4u-form-row input:focus,
.wp4u-form-row select:focus,
.wp4u-form-row textarea:focus { border-color: #16166E; }

.wp4u-form-row textarea { resize: vertical; }

.wp4u-contact-msg  { margin-top: 12px; font-size: .875rem; color: #e53e3e; }
.wp4u-contact-success { color: #16a34a; font-weight: 700; font-size: 1rem; }

.wp4u-contact__info-block {
  background: #f8f9ff;
  border: 1px solid #e8eaf6;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.wp4u-contact__info-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.wp4u-contact__info-block h3 { font-size: .95rem; font-weight: 700; color: #16166E; margin-bottom: 6px; }
.wp4u-contact__info-block p  { font-size: .875rem; color: #555; line-height: 1.6; margin: 0; }

@media (max-width: 860px) {
  .wp4u-contact__grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRIVACYBELEID
   ============================================= */
.wp4u-prose { max-width: 760px; margin: 0 auto; }
.wp4u-prose h2 { font-size: 1.4rem; font-weight: 800; color: #16166E; margin: 2.5rem 0 .75rem; }
.wp4u-prose h3 { font-size: 1.1rem; font-weight: 700; color: #333; margin: 1.5rem 0 .5rem; }
.wp4u-prose p, .wp4u-prose li { line-height: 1.8; color: #444; }
.wp4u-prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.wp4u-prose li { margin-bottom: 6px; }

.wp4u-privacy-table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .875rem; }
.wp4u-privacy-table th { background: #16166E; color: #fff; padding: 10px 14px; text-align: left; }
.wp4u-privacy-table td { padding: 10px 14px; border-bottom: 1px solid #eee; }
.wp4u-privacy-table tr:nth-child(even) td { background: #f8f9ff; }

/* =============================================
   404 PAGINA
   ============================================= */
.wp4u-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #16166E 0%, #0a0a3a 100%);
  padding: 80px 0;
}

.wp4u-404-inner { text-align: center; max-width: 600px; margin: 0 auto; }

.wp4u-404-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: rgba(255,255,255,.1);
  line-height: 1;
  margin-bottom: -20px;
}

.wp4u-404-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.wp4u-404-inner p { color: rgba(255,255,255,.6); font-size: 1.1rem; margin-bottom: 2rem; }

.wp4u-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.wp4u-404-links p { color: rgba(255,255,255,.4); font-size: .85rem; margin-bottom: 1rem; }

.wp4u-404-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wp4u-404-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: background .15s, color .15s;
}

.wp4u-404-card:hover { background: rgba(255,255,255,.15); color: #fff; }

@media (max-width: 560px) {
  .wp4u-404-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Full-width layout voor custom page templates */
body.page-template-page-over .content-area,
body.page-template-page-contact .content-area,
body.page-template-page-privacybeleid .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}

body.page-template-page-over .widget-area,
body.page-template-page-contact .widget-area,
body.page-template-page-privacybeleid .widget-area {
  display: none !important;
}

body.page-template-page-over .inside-article,
body.page-template-page-contact .inside-article,
body.page-template-page-privacybeleid .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-template-page-over .entry-header,
body.page-template-page-contact .entry-header,
body.page-template-page-privacybeleid .entry-header {
  display: none !important;
}

body.error404 .content-area {
  width: 100% !important;
  float: none !important;
}

body.error404 .widget-area { display: none !important; }

body.error404 .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* =============================================
   HOSTING VERGELIJKER
   ============================================= */

/* Top 3 picks */
.wp4u-hosting-top3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.wp4u-top3-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}

.wp4u-top3-card--gold   { background: #fffbeb; border-color: #f59e0b; }
.wp4u-top3-card--blue   { background: #eff6ff; border-color: #3b82f6; }
.wp4u-top3-card--orange { background: #fff7ed; border-color: #f97316; }

.wp4u-top3-crown { font-size: 2rem; margin-bottom: 8px; }
.wp4u-top3-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #888; margin-bottom: 6px; }
.wp4u-top3-name  { font-size: 1.6rem; font-weight: 900; color: #16166E; margin-bottom: 4px; }
.wp4u-top3-score { font-size: 1.1rem; font-weight: 800; color: #16166E; margin-bottom: 12px; }
.wp4u-top3-card p { font-size: .875rem; color: #555; line-height: 1.6; margin-bottom: 1.25rem; }

/* Controls */
.wp4u-hosting-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wp4u-hosting-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.wp4u-filter-btn {
  padding: 8px 16px;
  border-radius: 99px;
  border: 1.5px solid #dde1f0;
  background: #fff;
  color: #555;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}

.wp4u-filter-btn:hover,
.wp4u-filter-btn.active {
  background: #16166E;
  border-color: #16166E;
  color: #fff;
}

.wp4u-hosting-sort { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: #555; }
.wp4u-hosting-sort select {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1.5px solid #dde1f0;
  font-size: .875rem;
  outline: none;
  cursor: pointer;
}

/* Host cards */
.wp4u-host-card {
  background: #fff;
  border: 1.5px solid #e8eaf6;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow .2s;
}

.wp4u-host-card:hover { box-shadow: 0 4px 24px rgba(22,22,110,.1); }

.wp4u-host-card__main {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
}

.wp4u-host-card__rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: #c7cce8;
  text-align: center;
  flex-shrink: 0;
}

.wp4u-host-card__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.wp4u-host-logo { font-size: 1.4rem; }

.wp4u-host-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: #16166E;
  margin: 0;
}

.wp4u-host-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wp4u-host-badge--gold   { background: #fef3c7; color: #92400e; }
.wp4u-host-badge--blue   { background: #dbeafe; color: #1e40af; }
.wp4u-host-badge--orange { background: #ffedd5; color: #9a3412; }
.wp4u-host-badge--purple { background: #f3e8ff; color: #6b21a8; }
.wp4u-host-badge--green  { background: #dcfce7; color: #166534; }
.wp4u-host-badge--gray   { background: #f3f4f6; color: #374151; }
.wp4u-host-badge--nl     { background: #fef2f2; color: #991b1b; }

.wp4u-host-tagline { font-size: .875rem; color: #666; margin: 0 0 10px; }

.wp4u-host-features { display: flex; gap: 6px; flex-wrap: wrap; }

.wp4u-feat--yes,
.wp4u-feat--no {
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.wp4u-feat--yes { background: #dcfce7; color: #166534; }
.wp4u-feat--no  { background: #f3f4f6; color: #9ca3af; text-decoration: line-through; }

/* Score circles */
.wp4u-host-card__scores {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.wp4u-score-item { text-align: center; }
.wp4u-score-item span { font-size: .65rem; color: #888; display: block; margin-top: 4px; }

.wp4u-score-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 900;
  color: #fff;
}

.wp4u-score--green { background: #16a34a; }
.wp4u-score--blue  { background: #16166E; }
.wp4u-score--gray  { background: #9ca3af; }

/* CTA column */
.wp4u-host-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 160px;
}

.wp4u-host-price {
  font-size: .8rem;
  color: #666;
  font-weight: 600;
}

.wp4u-host-toggle {
  background: none;
  border: 1.5px solid #dde1f0;
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .75rem;
  color: #666;
  cursor: pointer;
  font-weight: 600;
  transition: all .15s;
}

.wp4u-host-toggle:hover { border-color: #16166E; color: #16166E; }

/* Detail expand */
.wp4u-host-card__detail {
  border-top: 1.5px solid #e8eaf6;
  background: #f8f9ff;
  padding: 1.5rem;
}

.wp4u-host-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.wp4u-host-detail-grid h4 { font-size: .875rem; font-weight: 700; color: #16166E; margin-bottom: 10px; }
.wp4u-host-detail-grid ul { padding-left: 1rem; margin: 0; }
.wp4u-host-detail-grid li { font-size: .875rem; color: #444; margin-bottom: 6px; line-height: 1.5; }
.wp4u-host-detail-specs table { width: 100%; font-size: .82rem; }
.wp4u-host-detail-specs td { padding: 5px 0; border-bottom: 1px solid #e8eaf6; color: #555; }
.wp4u-host-detail-specs td:first-child { font-weight: 600; color: #333; width: 50%; }

/* Vergelijkingstabel */
.wp4u-compare-table-wrap { overflow-x: auto; }

.wp4u-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.wp4u-compare-table th {
  background: #16166E;
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.wp4u-compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8eaf6;
  color: #444;
}

.wp4u-compare-table tr:nth-child(even) td { background: #f8f9ff; }
.wp4u-compare-table tr:hover td { background: #eff1fb; }

.wp4u-table-score {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
}

.wp4u-table-score--green { background: #16a34a; }
.wp4u-table-score--blue  { background: #16166E; }
.wp4u-table-score--gray  { background: #9ca3af; }

/* Disclaimer */
.wp4u-hosting-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  background: #fffbeb;
  border: 1.5px solid #f59e0b;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .wp4u-host-card__main { grid-template-columns: 40px 1fr; }
  .wp4u-host-card__scores { display: none; }
  .wp4u-host-card__cta { flex-direction: row; min-width: auto; grid-column: 2; }
}

@media (max-width: 768px) {
  .wp4u-hosting-top3 { grid-template-columns: 1fr; }
  .wp4u-host-detail-grid { grid-template-columns: 1fr; }
  .wp4u-host-card__main { grid-template-columns: 1fr; }
  .wp4u-host-card__rank { display: none; }
}

/* Full-width fix voor hosting vergelijker pagina */
body.page-template-page-hosting-vergelijker .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}

body.page-template-page-hosting-vergelijker .widget-area { display: none !important; }

body.page-template-page-hosting-vergelijker .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-template-page-hosting-vergelijker .entry-header { display: none !important; }

/* FAQ Accordion */
.wp4u-faq { max-width: 760px; margin: 0 auto; }
.wp4u-faq-item { border-bottom: 1.5px solid #e8eaf6; }
.wp4u-faq-item:first-child { border-top: 1.5px solid #e8eaf6; }

.wp4u-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #16166E;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  transition: color .15s;
}

.wp4u-faq-q:hover { color: #1a1a8c; }

.wp4u-faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  color: #16166E;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.wp4u-faq-a p {
  padding: 0 0 1.1rem;
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   HOMEPAGE — Hosting Preview
   ============================================= */
.wp4u-hosting-preview { display: flex; flex-direction: column; gap: .75rem; }

.wp4u-hp-card {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1.5px solid #e8eaf6;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: box-shadow .2s;
}

.wp4u-hp-card:hover { box-shadow: 0 4px 24px rgba(22,22,110,.1); }
.wp4u-hp-card--gold  { border-color: #f59e0b; background: #fffbeb; }

.wp4u-hp-rank {
  font-size: 1.5rem;
  font-weight: 900;
  color: #c7cce8;
  text-align: center;
}
.wp4u-hp-card--gold .wp4u-hp-rank { color: #f59e0b; }

.wp4u-hp-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.wp4u-hp-logo { font-size: 1.3rem; }
.wp4u-hp-title strong { font-size: 1.1rem; font-weight: 900; color: #16166E; }
.wp4u-hp-info p { font-size: .82rem; color: #666; margin: 0; }

.wp4u-hp-score { text-align: center; flex-shrink: 0; }
.wp4u-hp-score span { font-size: .65rem; color: #888; display: block; margin-top: 4px; }

.wp4u-hp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 130px;
}

@media (max-width: 768px) {
  .wp4u-hp-card { grid-template-columns: 1fr auto; }
  .wp4u-hp-rank { display: none; }
  .wp4u-hp-score { display: none; }
  .wp4u-hp-cta { min-width: auto; }
}

/* =============================================
   HOMEPAGE — Laatste Artikelen
   ============================================= */
.wp4u-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wp4u-post-card {
  background: #fff;
  border: 1.5px solid #e8eaf6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.wp4u-post-card:hover {
  box-shadow: 0 8px 32px rgba(22,22,110,.12);
  transform: translateY(-2px);
}

.wp4u-post-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.wp4u-post-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.wp4u-post-card:hover .wp4u-post-card__img { transform: scale(1.04); }

.wp4u-post-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }

.wp4u-post-card__cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #16166E;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}
.wp4u-post-card__cat:hover { color: #00D4FF; }

.wp4u-post-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #16166E;
  margin: 0 0 10px;
  line-height: 1.4;
}
.wp4u-post-card__title a { text-decoration: none; color: inherit; }
.wp4u-post-card__title a:hover { color: #1a1a8c; }

.wp4u-post-card__excerpt { font-size: .85rem; color: #666; line-height: 1.6; margin: 0 0 auto; }

.wp4u-post-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid #e8eaf6;
  font-size: .78rem;
  color: #999;
}

.wp4u-post-card__read {
  color: #16166E;
  text-decoration: none;
  font-weight: 700;
  font-size: .78rem;
}
.wp4u-post-card__read:hover { color: #00D4FF; }

@media (max-width: 900px) {
  .wp4u-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wp4u-posts-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BLOG ARCHIVE — Full-width override
   ============================================= */
body.blog .content-area,
body.archive .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}
body.blog .widget-area,
body.archive .widget-area { display: none !important; }
body.blog .inside-article,
body.archive .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.blog .entry-header,
body.archive .entry-header { display: none !important; }

/* =============================================
   BLOG ARCHIVE — Filters
   ============================================= */
.wp4u-blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid #e8eaf6;
}

/* =============================================
   BLOG ARCHIVE — Post card placeholder
   ============================================= */
.wp4u-post-card__img-placeholder {
  background: linear-gradient(135deg, #f0f2ff 0%, #e8eaf6 100%);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp4u-post-placeholder {
  font-size: 3rem;
  opacity: .4;
}

/* =============================================
   BLOG ARCHIVE — Pagination
   ============================================= */
.wp4u-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.wp4u-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid #e8eaf6;
  font-size: .875rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all .15s;
}
.wp4u-pagination .page-numbers:hover,
.wp4u-pagination .page-numbers.current {
  background: #16166E;
  border-color: #16166E;
  color: #fff;
}
.wp4u-pagination .page-numbers span { font-size: .875rem; }

/* =============================================
   BLOG ARCHIVE — Empty state
   ============================================= */
.wp4u-blog-empty {
  text-align: center;
  padding: 4rem 0;
  color: #888;
  font-size: 1.1rem;
}

/* =============================================
   SINGLE POST — Full-width override
   ============================================= */
body.single .widget-area { display: none !important; }
body.single .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* =============================================
   GLOBAL FULL-WIDTH FIX — alle custom templates
   ============================================= */

/* 1. Full-bleed breakout voor alle wp4u main elementen */
#wp4u-home,
#wp4u-blog,
#wp4u-hosting,
#wp4u-contact,
#wp4u-over,
#wp4u-privacy {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}

/* 2. Verwijder max-width van alle GeneratePress wrappers op custom pagina's */
body.page-template-page-hosting-vergelijker .site-content,
body.page-template-page-contact .site-content,
body.page-template-page-over .site-content,
body.page-template-page-privacybeleid .site-content,
body.blog .site-content,
body.archive .site-content,
body.category .site-content,
body.single .site-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-template-page-hosting-vergelijker .content-area,
body.page-template-page-contact .content-area,
body.page-template-page-over .content-area,
body.page-template-page-privacybeleid .content-area,
body.blog .content-area,
body.archive .content-area,
body.category .content-area,
body.single .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}

body.page-template-page-hosting-vergelijker .inside-article,
body.page-template-page-contact .inside-article,
body.page-template-page-over .inside-article,
body.page-template-page-privacybeleid .inside-article,
body.blog .inside-article,
body.archive .inside-article,
body.category .inside-article,
body.single .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-template-page-hosting-vergelijker .entry-header,
body.page-template-page-contact .entry-header,
body.page-template-page-over .entry-header,
body.page-template-page-privacybeleid .entry-header,
body.blog .entry-header,
body.archive .entry-header,
body.category .entry-header { display: none !important; }

body.page-template-page-hosting-vergelijker .widget-area,
body.page-template-page-contact .widget-area,
body.page-template-page-over .widget-area,
body.page-template-page-privacybeleid .widget-area { display: none !important; }

/* =============================================
   WOORDENBOEK + ADDITIONAL PAGE FULL-WIDTH FIX
   ============================================= */
#wp4u-woordenboek {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}
body.page-template-page-woordenboek .site-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.page-template-page-woordenboek .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}
body.page-template-page-woordenboek .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.page-template-page-woordenboek .entry-header,
body.page-template-page-woordenboek .widget-area { display: none !important; }

/* =============================================
   TOOLS — Full-width fix voor alle tool-pagina's
   ============================================= */

/* Main element full-bleed */
#wp4u-speed,
#wp4u-vergelijker,
#wp4u-stats,
#wp4u-scanner,
#wp4u-theme-matcher,
#wp4u-snippets {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow-x: hidden;
}

/* GeneratePress wrappers override */
body.page-template-page-snelheidsanalyse .site-content,
body.page-template-page-plugin-vergelijker .site-content,
body.page-template-page-security-scanner .site-content,
body.page-template-page-theme-matcher .site-content,
body.page-template-page-snippet-generator .site-content,
body.page-template-page-wp-statistieken .site-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-template-page-snelheidsanalyse .content-area,
body.page-template-page-plugin-vergelijker .content-area,
body.page-template-page-security-scanner .content-area,
body.page-template-page-theme-matcher .content-area,
body.page-template-page-snippet-generator .content-area,
body.page-template-page-wp-statistieken .content-area {
  width: 100% !important;
  float: none !important;
  max-width: 100% !important;
}

body.page-template-page-snelheidsanalyse .inside-article,
body.page-template-page-plugin-vergelijker .inside-article,
body.page-template-page-security-scanner .inside-article,
body.page-template-page-theme-matcher .inside-article,
body.page-template-page-snippet-generator .inside-article,
body.page-template-page-wp-statistieken .inside-article {
  padding: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-template-page-snelheidsanalyse .entry-header,
body.page-template-page-plugin-vergelijker .entry-header,
body.page-template-page-security-scanner .entry-header,
body.page-template-page-theme-matcher .entry-header,
body.page-template-page-snippet-generator .entry-header,
body.page-template-page-wp-statistieken .entry-header,
body.page-template-page-snelheidsanalyse .widget-area,
body.page-template-page-plugin-vergelijker .widget-area,
body.page-template-page-security-scanner .widget-area,
body.page-template-page-theme-matcher .widget-area,
body.page-template-page-snippet-generator .widget-area,
body.page-template-page-wp-statistieken .widget-area { display: none !important; }
