﻿/**
 * Homepage-voorbeelden secties (hero, merken, stappen, CTA, testimonials, USP).
 * @package HelloElementorChild
 */

/* ─── AANKONDIGINGSBALK ─────────────────────────────────── */
.aankondiging {
  background: var(--blauw);
  color: rgba(255,255,255,.9);
  text-align: center;
  font-size: 13px;
  padding: 10px 24px;
}
.aankondiging a { color: var(--goud); font-weight: 600; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--ijsblauw) 0%, var(--lichtblauw) 60%, #D6EEF9 100%);
  padding: 80px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  margin-bottom: 18px;
}

.hero__kop {
  font-family: var(--font-kop);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blauw);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__kop em {
  font-style: normal;
  color: var(--goud);
  /* goudgele tekst met subtiele underline */
  text-decoration: underline;
  text-decoration-color: rgba(245,200,66,.4);
  text-underline-offset: 6px;
}

.hero__subtitel {
  font-size: 18px;
  color: var(--subtekst);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__review {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__review-sterren { font-size: 18px; letter-spacing: 2px; color: var(--goud); }

.hero__review-tekst {
  font-size: 14px;
  color: var(--subtekst);
}

.hero__review-tekst strong {
  display: block;
  font-size: 15px;
  color: var(--blauw);
  font-weight: 700;
}

.hero__afbeelding {
  position: relative;
}

.hero__kaart {
  background: var(--wit);
  border-radius: var(--radius-lg);
  box-shadow: var(--schaduw-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #C8E6F5 0%, #A8D4EC 100%);
  font-size: 14px;
  color: var(--subtekst);
  text-align: center;
}

/* floating badge op foto */
.hero__floating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--wit);
  border-radius: var(--radius-md);
  box-shadow: var(--schaduw-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blauw);
  white-space: nowrap;
}

.hero__floating-badge .icoon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--goud-licht);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ─── MERKEN BALK ───────────────────────────────────────── */
.merken-balk {
  background: var(--wit);
  border-top: 1px solid var(--rand);
  border-bottom: 1px solid var(--rand);
  padding: 20px 24px;
}

.merken-balk__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.merken-balk__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--subtekst);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}

.merken-balk__lijst {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.merken-balk__lijst li {
  font-size: 14px;
  font-weight: 700;
  color: var(--blauw);
  opacity: .55;
  transition: opacity .2s;
  letter-spacing: .01em;
}
.merken-balk__lijst li:hover { opacity: 1; }

/* ─── HOE WERKT HET ─────────────────────────────────────── */
.stappen {
  background: var(--ijsblauw);
  padding: var(--sectie-pad);
}

.sectie-kop {
  text-align: center;
  margin-bottom: 56px;
}

.sectie-kop h2 {
  font-family: var(--font-kop);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--blauw);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.sectie-kop p {
  font-size: 17px;
  color: var(--subtekst);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.stappen__rij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-breedte);
  margin: 0 auto;
  position: relative;
}

/* verbindingslijn tussen stappen */
.stappen__rij::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--goud), var(--goud));
  border-radius: 2px;
  opacity: .4;
  z-index: 0;
}

.stap {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--schaduw-sm);
  transition: box-shadow .2s, transform .2s;
}
.stap:hover {
  box-shadow: var(--schaduw-md);
  transform: translateY(-4px);
}

.stap__nummer {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--goud);
  color: var(--blauw);
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
  font-family: var(--font-kop);
}

.stap__titel {
  font-size: 18px;
  font-weight: 700;
  color: var(--blauw);
  margin-bottom: 10px;
}

.stap__tekst {
  font-size: 14px;
  color: var(--subtekst);
  line-height: 1.7;
}

/* ─── MERKEN OVERZICHT ──────────────────────────────────── */
.merken-overzicht {
  background: var(--wit);
  padding: var(--sectie-pad);
}

.merken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.merk-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  box-shadow: var(--schaduw-sm);
}

.merk-kaart:hover {
  box-shadow: var(--schaduw-md);
  transform: translateY(-3px);
  border-color: var(--goud);
}

.merk-kaart__logo {
  font-size: 28px;
  margin-bottom: 10px;
}

.merk-kaart__naam {
  font-size: 14px;
  font-weight: 700;
  color: var(--blauw);
  margin-bottom: 6px;
}

.merk-kaart__percentage {
  font-size: 13px;
  color: var(--succes);
  font-weight: 600;
}

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  background: var(--blauw);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-kop);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--wit);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

.cta-banner__knoppen {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  background: var(--ijsblauw);
  padding: var(--sectie-pad);
}

.testimonials__rij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.testimonial {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--schaduw-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__sterren { font-size: 16px; letter-spacing: 2px; color: var(--goud); }

.testimonial__tekst {
  font-size: 15px;
  color: var(--subtekst);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial__auteur {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--rand);
  padding-top: 16px;
}

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lichtblauw);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--blauw);
  flex-shrink: 0;
}

.testimonial__naam {
  font-weight: 700;
  font-size: 14px;
  color: var(--blauw);
}

.testimonial__locatie {
  font-size: 12px;
  color: var(--subtekst);
}

/* ─── USP BALK ──────────────────────────────────────────── */
.usp-balk {
  background: var(--wit);
  padding: 40px 24px;
  border-bottom: 1px solid var(--rand);
}

.usp-balk__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.usp__icoon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--goud-licht);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.usp__titel {
  font-size: 15px;
  font-weight: 700;
  color: var(--blauw);
  margin-bottom: 4px;
}

.usp__tekst {
  font-size: 13px;
  color: var(--subtekst);
  line-height: 1.5;
}

