/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* HERO */
.hero {
  min-height: calc(100vh - var(--header-h));
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
}
.hero-image::after {
  /* Fade from black on left to transparent on right */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,10,10,0.85) 18%, rgba(10,10,10,0.4) 38%, transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.hero h1 { margin-bottom: 32px; }
.hero-sub { margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-status {
  position: absolute;
  bottom: 32px;
  left: 24px;
  z-index: 2;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 40px 0 0;
    display: block;
  }
  .hero-image {
    position: relative;
    width: 100%;
    height: 420px;
    margin-top: 32px;
  }
  .hero-image::after {
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  }
  .hero-content { max-width: 100%; }
  .hero-status { position: relative; bottom: auto; left: auto; margin-top: 24px; }
}

/* STATS STRIP */
.stats-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 48px 0;
  background: var(--bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { padding: 0; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-num .plus { font-size: 0.7em; vertical-align: top; color: var(--gold-bright); }
.stat-label {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}

/* LIVE STUDIO CARD */
.live-studio {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.live-studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.live-waveform {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 32px;
  flex-shrink: 0;
}
.live-waveform .bar {
  width: 3px;
  background: var(--gold);
  border-radius: 1px;
  animation: livewave 1.4s ease-in-out infinite;
}
@keyframes livewave {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}
.live-waveform .bar:nth-child(1) { animation-delay: 0.0s; }
.live-waveform .bar:nth-child(2) { animation-delay: 0.15s; }
.live-waveform .bar:nth-child(3) { animation-delay: 0.3s; }
.live-waveform .bar:nth-child(4) { animation-delay: 0.45s; }
.live-waveform .bar:nth-child(5) { animation-delay: 0.6s; }
.live-waveform .bar:nth-child(6) { animation-delay: 0.3s; }
.live-waveform .bar:nth-child(7) { animation-delay: 0.15s; }
.live-studio-text { flex: 1; position: relative; }
.live-studio-title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.live-studio-sub { font-size: 13px; color: var(--ink-dim); }

/* BRANDS MARQUEE */
.brands {
  padding: 60px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.marquee {
  display: flex;
  gap: 64px;
  animation: scroll 45s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-name {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--ink-dim);
  font-style: italic;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.brand-name:hover { color: var(--gold); }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover {
  background: var(--bg-elevated);
  border-color: var(--line);
  transform: translateY(-4px);
}
.service-card:hover::after { width: 100%; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

/* RED BULL CASE */
.case-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.case-feature::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.case-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.case-feature h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.case-feature p { color: var(--ink-dim); margin-bottom: 28px; font-size: 16px; }
.case-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.case-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a1f0f 0%, #0f0a05 100%);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
}
.case-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(138, 111, 61, 0.2) 0%, transparent 50%);
}
.case-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.case-play:hover { transform: scale(1.08); }
.case-play svg { fill: var(--bg); margin-left: 4px; }
.case-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.05em;
  z-index: 2;
}
/* Thumbnail + inline YouTube in het case-vakje */
.case-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.case-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(10,10,10,0.55) 100%); }
.case-visual iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.case-enlarge {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 8px;
  background: rgba(10,10,10,0.6); border: 1px solid var(--line-gold); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3;
  transition: background 0.2s ease;
}
.case-enlarge:hover { background: rgba(10,10,10,0.85); }

/* DEMOS */
.demos-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

/* REVIEWS CAROUSEL */
.reviews-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { height: 4px; }
.reviews-track::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }
.reviews-track::-webkit-scrollbar-track { background: var(--line-soft); }

.review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}
.review-card:hover { border-color: var(--line); }
.review-quote-mark {
  font-family: var(--display);
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.review-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
  flex: 1;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-author-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.review-author-co { font-size: 12px; color: var(--gold); }

/* USPs */
.usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.usp-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.usp-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}
.usp-card h4 { margin-bottom: 8px; }
.usp-card p { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

/* CTA */
.cta-section {
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: 28px;
  position: relative;
}
.cta-section .lead {
  margin: 0 auto 40px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .case-feature { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .case-visual { aspect-ratio: 16/10; order: -1; }
  .usps { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 300px; }
}

@media (max-width: 600px) {
  .hero { padding: 40px 0 0; }
  .hero-image { height: 320px; margin-top: 24px; }
  .hero-status { position: relative; bottom: auto; left: auto; margin-top: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-feature { padding: 24px; }
  .case-feature h3 { font-size: 26px; }
  .usps { grid-template-columns: 1fr 1fr; }
  .review-card { flex: 0 0 280px; padding: 24px; }
  .review-text { font-size: 16px; }
  .live-studio { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-section { padding: 80px 0; }
}

/* CTA met foto-achtergrond \u2014 verplaatst naar pages.css (overal geladen, ook over-pagina). */
