/* ===================================================
   FitnessKiezen — Home (index.html)
   =================================================== */

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 60%, #1e3a8a 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.2;
}
.hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  list-style: none;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.hero .btn-primary {
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-image img {
  max-height: 380px;
  width: 100%;
  object-fit: cover;
}

/* ===== VERGELIJK SECTIE ===== */
.compare-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.compare-text p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.compare-tag {
  display: block;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.compare-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== NIEUWSBRIEF ===== */
.newsletter-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.newsletter-box h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 10px;
  outline: none;
}
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
}
.newsletter-btn:hover { background: var(--primary-dark); }

/* ===== ARTIKELEN ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.article-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.article-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.article-card-img {
  width: 120px;
  min-height: 100px;
  background: var(--bg-light);
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.article-card:hover .article-card-img img {
  transform: scale(1.05);
}
.article-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-card-body small {
  font-size: 0.72rem;
  color: var(--text-light);
}
.article-card-body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 3px 0;
}
.article-card-body p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== STEPS FLOW ===== */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step strong {
  font-size: 0.92rem;
  color: var(--dark);
}
.step p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 4px 0 0;
}

/* ===== PRODUCTS CTA ===== */
.products-cta {
  text-align: center;
  margin-top: 28px;
}

/* ===== RESPONSIVE (home) ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-checks { align-items: center; }
  .hero-image { display: none; }
  .hero-stats { justify-content: center; }
  .compare-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 1.6rem; }
  .hero { padding: 56px 0 48px; }
  .hero-stats { gap: 20px; }
  .articles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.35rem; }
  .hero { padding: 44px 0 36px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .hero-stat-number { font-size: 1.1rem; }
  .article-card { flex-direction: column; }
  .article-card-img { width: 100%; height: 160px; }
}
