/* ─── HERO SECTION ───────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--donker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.15) 0%, transparent 70%);
  top: 10%;
  left: 5%;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.08) 0%, transparent 70%);
  bottom: 15%;
  right: 10%;
}

.hero-monogram {
  position: absolute;
  width: 600px;
  height: 600px;
  background: url('/assets/merk.svg') center/contain no-repeat;
  opacity: 0.08;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  color: var(--ivoor);
}

.hero-headline {
  color: var(--ivoor);
  margin: 20px 0 28px;
}

.hero-lead {
  font-size: 18px;
  color: rgba(248, 247, 243, 0.75);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-monogram {
    width: 400px;
    height: 400px;
    right: -80px;
    opacity: 0.06;
  }

  .orb-1 {
    width: 250px;
    height: 250px;
  }

  .orb-2 {
    width: 220px;
    height: 220px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* ─── STATS STRIP ────────────────────────────────────────── */

.stats-strip {
  background: var(--ivoor);
  padding: 0;
  border-top: 1px solid var(--rand);
  border-bottom: 1px solid var(--rand);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rand);
  min-height: 140px;
}

.stat {
  background: var(--ivoor);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 600;
  color: var(--donker);
  line-height: 1;
}

.stat-plus,
.stat-unit,
.stat-currency {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 36, 32, 0.5);
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stat {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* ─── SERVICES TEASER ────────────────────────────────────– */

.services-teaser {
  background: var(--ivoor);
}

.services-teaser h2 {
  margin-bottom: 48px;
}

.service-card {
  background: var(--creme);
  padding: 32px;
  border: 1px solid var(--rand);
  border-top-width: 1px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-top: 2px solid var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(44, 36, 32, 0.08);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  flex: 1;
  margin-bottom: 16px;
  font-size: 14px;
}

.service-price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--donker);
  transform: translateX(4px);
}

/* ─── PORTFOLIO TEASER ────────────────────────────────────– */

.portfolio-teaser {
  background: var(--eik);
  color: var(--ivoor);
}

.portfolio-teaser .section-header .eyebrow {
  color: rgba(217, 119, 87, 0.7);
}

.portfolio-teaser h2 {
  color: var(--ivoor);
  margin-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.project-card-home {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

.browser-frame {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(248, 247, 243, 0.1);
  display: flex;
  flex-direction: column;
  background: var(--donker);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.browser-chrome {
  background: #2a2a2a;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(248, 247, 243, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(248, 247, 243, 0.4);
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 247, 243, 0.1);
}

.browser-address {
  flex: 1;
  padding: 4px 8px;
  background: rgba(248, 247, 243, 0.05);
  border-radius: 2px;
  font-size: 9px;
  color: rgba(248, 247, 243, 0.3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--donker);
}

.browser-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.browser-frame:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

.browser-frame:hover .browser-screenshot {
  transform: translateY(-12%);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 119, 87, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
  pointer-events: none;
}

.browser-frame:hover .project-overlay {
  opacity: 1;
}

.project-overlay-text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-cta {
  text-align: center;
}

.portfolio-cta .btn {
  color: var(--ivoor);
  border-color: var(--ivoor);
}

.portfolio-cta .btn:hover {
  background: var(--ivoor);
  color: var(--donker);
}

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

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

/* ─── WERKWIJZE TEASER ───────────────────────────────────– */

.werkwijze-teaser {
  background: var(--creme);
}

.werkwijze-teaser h2 {
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--rand);
  border-right: none;
}

.step {
  padding: 32px 24px;
  border-right: 1px solid var(--rand);
  position: relative;
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.step h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--donker);
}

.step p {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.6;
}

.werkwijze-cta {
  text-align: center;
}

.werkwijze-cta .btn {
  color: var(--donker);
  border-color: var(--donker);
}

.werkwijze-cta .btn:hover {
  background: var(--donker);
  color: var(--ivoor);
}

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

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--rand);
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--rand);
  }

  .step:last-child {
    border-bottom: none;
  }
}

/* ─── CTA SECTION ────────────────────────────────────────– */

.cta-section {
  position: relative;
  background: var(--donker);
  padding: var(--pad);
  overflow: hidden;
}

.cta-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orb-3,
.orb-4 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.1) 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--ivoor);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--ivoor);
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    min-width: auto;
  }

  .orb-3,
  .orb-4 {
    display: none;
  }
}
