/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 620px; overflow: hidden; background: var(--secondary); }
.hero-slides { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; transition: transform 8s ease; transform: scale(1.05); }
.hero-slide.active { opacity: 1; }
.hero-slide.active::before { transform: scale(1); }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,5,25,0.82) 0%, rgba(10,5,25,0.5) 50%, rgba(10,5,25,0.15) 100%); }
.hero-slide-inner { position: absolute; top: 50%; left: 0; transform: translateY(-50%); padding: 0 60px; max-width: 680px; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.5); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero-slide-inner h1 { font-size: clamp(36px, 5.5vw, 62px); color: #fff; line-height: 1.12; margin-bottom: 18px; font-family: 'Playfair Display', serif; }
.hero-slide-inner h1 em { color: var(--accent); font-style: italic; }
.hero-slide-inner p { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hbtn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.25s; letter-spacing: 0.3px; }
.hbtn-primary { background: var(--accent); color: #1a1000; }
.hbtn-primary:hover { background: #e0c040; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.hbtn-ghost { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.35); color: #fff; backdrop-filter: blur(6px); }
.hbtn-ghost:hover { background: rgba(255,255,255,0.2); }
.hero-controls { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; z-index: 10; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: 0.3s; padding: 0; }
.hero-dot.active { width: 24px; border-radius: 4px; background: var(--accent); }
.hero-arrow { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.25); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: 0.2s; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-scroll-hint { position: absolute; bottom: 32px; right: 40px; color: rgba(255,255,255,0.4); font-size: 18px; animation: bounce 2s infinite; z-index: 10; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===== USP STRIP ===== */
.usp-strip { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.04); }
.usp-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; padding: 0; }
.usp-item-new { display: flex; align-items: center; gap: 14px; padding: 22px 32px; flex: 1; min-width: 200px; }
.usp-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp-icon i { color: #fff; font-size: 18px; }
.usp-item-new strong { display: block; font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 2px; }
.usp-item-new span { font-size: 12px; color: var(--text-light); }
.usp-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ===== HOME SECTIONS ===== */
.home-section { padding: 80px 0; }
.section-label { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.section-title-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.section-title-row h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--secondary); }
.section-link { font-size: 14px; font-weight: 700; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap 0.2s; }
.section-link:hover { gap: 10px; }

/* ===== CATEGORIE FOTO GRID ===== */
.cat-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 16px; }
.cat-large { grid-column: span 2; grid-row: span 2; }
.cat-photo-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; text-decoration: none; display: block; }
.cat-photo-card::before { content: ''; position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transition: transform 0.5s ease; }
.cat-photo-card:hover::before { transform: scale(1.06); }
.cat-photo-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,5,25,0.80) 0%, rgba(10,5,25,0.2) 50%, transparent 100%); }
.cat-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.cat-photo-tag { display: inline-block; background: var(--accent); color: #1a1000; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 8px; }
.cat-photo-overlay h3 { color: #fff; font-size: 20px; font-family: 'Playfair Display', serif; margin-bottom: 4px; }
.cat-large .cat-photo-overlay h3 { font-size: 28px; }
.cat-photo-overlay p { color: rgba(255,255,255,0.70); font-size: 13px; }

/* ===== MERKEN ===== */
.brands-section { background: var(--secondary); padding: 60px 0; }
.brands-section .section-label { color: var(--accent); }
.brands-title { color: #fff; font-size: 28px; margin-bottom: 32px; }
.brands-scroll { display: flex; gap: 12px; flex-wrap: wrap; }
.brand-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); padding: 12px 22px; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; font-family: 'Playfair Display', serif; }
.brand-pill:hover { background: var(--accent); border-color: var(--accent); color: #1a1000; transform: translateY(-2px); }
.brand-pill-icon { font-size: 14px; opacity: 0.7; }

/* ===== SPLITSCREEN ===== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split-img { background-image: var(--img); background-size: cover; background-position: center; }
.split-content { background: var(--bg-warm); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.split-content h2 { font-size: clamp(28px, 3vw, 40px); color: var(--secondary); margin-bottom: 20px; line-height: 1.2; }
.split-content h2 em { color: var(--primary); font-style: italic; }
.split-content p { color: var(--text-light); line-height: 1.8; font-size: 15px; margin-bottom: 28px; }
.split-list { list-style: none; margin-bottom: 36px; }
.split-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }
.split-list li i { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.split-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--primary); color: #fff; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.2s; width: fit-content; }
.split-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,43,131,0.3); }

/* ===== STATISTIEKEN ===== */
.stats-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(42px, 5vw, 60px); font-weight: 800; color: #fff; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-plus { font-size: 32px; font-weight: 800; color: var(--accent); vertical-align: top; margin-top: 6px; display: inline-block; }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.60); font-weight: 500; margin-top: 8px; letter-spacing: 0.5px; }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background-image: var(--img); background-size: cover; background-position: center; transform: scale(1.02); }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,5,25,0.88) 0%, rgba(92,43,131,0.70) 100%); }
.final-cta-content { position: relative; z-index: 2; text-align: center; padding: 60px 24px; width: 100%; }
.final-cta-content h2 { font-size: clamp(32px, 5vw, 52px); color: #fff; margin-bottom: 16px; }
.final-cta-content p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cat-photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .cat-large { grid-column: span 2; height: 300px; }
    .cat-photo-card { height: 220px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }
}
@media (max-width: 768px) {
    .hero-slider { height: 480px; }
    .hero-slide-inner { padding: 0 24px; }
    .usp-strip-inner { flex-direction: column; gap: 0; }
    .usp-divider { width: 80%; height: 1px; }
    .usp-item-new { padding: 16px 24px; width: 100%; }
    .cat-photo-grid { grid-template-columns: 1fr 1fr; }
    .cat-large { grid-column: span 2; height: 250px; }
    .cat-photo-card { height: 180px; }
    .split-section { grid-template-columns: 1fr; }
    .split-img { height: 300px; }
    .split-content { padding: 50px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-scroll { gap: 8px; }
    .hero-scroll-hint { display: none; }
    .home-section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .cat-photo-grid { grid-template-columns: 1fr; }
    .cat-large { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}