/* ============================================================
   Woensdag.nl - Landing Page Stylesheet
   Vereist: style.css (knoppen, badges, animaties, reset)
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #0B3FA8, #0A348C 45%, #072C77 100%);
  overflow: hidden;
}

.lp-hero-orb-tr {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, #1C91CE, transparent 65%);
  filter: blur(60px);
  top: -140px; right: -80px;
  opacity: 0.55;
  pointer-events: none;
}

.lp-hero-orb-bl {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #4FB3E8, transparent 65%);
  filter: blur(50px);
  bottom: -100px; left: -60px;
  opacity: 0.4;
  pointer-events: none;
}

.lp-hero-orb-c {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #7FD0F2, transparent 65%);
  filter: blur(40px);
  bottom: 20%; right: 25%;
  opacity: 0.3;
  pointer-events: none;
}

.lp-hero-ring {
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.lp-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 160px 24px 100px;
  text-align: center;
  width: 100%;
}

.lp-hero h1 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}

.lp-hero h1 span { color: #7FD0F2; }

.lp-hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: #C7DCF2;
  max-width: 640px;
  margin: 0 auto 40px;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}

.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
}

.lp-hero-stat {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.lp-hero-stat:last-child { border-right: none; }

.lp-hero-stat-value {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.lp-hero-stat-label {
  font-size: 0.85rem;
  color: #9FC2E6;
  font-weight: 500;
  margin-top: 5px;
  white-space: nowrap;
}

/* ── Gedeelde sectie-utilities ───────────────────────────── */

.lp-section {
  padding: 96px 24px;
  background: #fff;
}

.lp-section-alt { background: #F6F9FD; }

.lp-section-border { border-top: 1px solid #EDF3FA; }

.lp-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-inner-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.lp-section-header h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #0B2545;
  margin: 0 0 16px;
}

.lp-section-header h2 span { color: #0B3FA8; }

.lp-section-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5B6B82;
  margin: 0;
}

/* ── Diensten grid ───────────────────────────────────────── */

.lp-diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.lp-dienst-card {
  background: #fff;
  border: 1px solid #E8EFF8;
  border-radius: 28px;
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.lp-dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(11,63,168,0.1);
  border-color: #c3d8f0;
}

.lp-dienst-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(140deg, #0B3FA8, #1C91CE);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 26px rgba(11,63,168,0.28);
}

.lp-dienst-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  color: #0B2545;
  margin: 0 0 12px;
}

.lp-dienst-card > p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5B6B82;
  margin: 0 0 20px;
}

.lp-dienst-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-dienst-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: #3a4a63;
  font-weight: 500;
}

.lp-bullet-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #EAF3FB;
  display: flex; align-items: center; justify-content: center;
}

/* ── Voordelen (split layout) ────────────────────────────── */

.lp-voordelen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lp-voordelen-text h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0B2545;
  margin: 0 0 16px;
}

.lp-voordelen-text h2 span { color: #0B3FA8; }

.lp-voordelen-text > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5B6B82;
  margin: 0 0 36px;
}

.lp-voordelen-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-voordeel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lp-voordeel-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, #EAF3FB, #D6EAFA);
  display: flex; align-items: center; justify-content: center;
}

.lp-voordeel-item h4 {
  font-weight: 700;
  font-size: 0.98rem;
  color: #0B2545;
  margin: 0 0 4px;
}

.lp-voordeel-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5B6B82;
  margin: 0;
}

/* Visual card */
.lp-visual-card {
  background: linear-gradient(140deg, #0B3FA8, #072C77);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.lp-visual-card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.lp-visual-card-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-visual-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 28px;
  position: relative;
}

.lp-visual-feature-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-visual-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.lp-visual-feature-check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}

/* ── Werkwijze steps ─────────────────────────────────────── */

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #E8EFF8;
  border-radius: 24px;
  overflow: hidden;
}

.lp-step {
  background: #fff;
  padding: 40px 32px;
  transition: background 0.2s;
}

.lp-step:hover { background: #FAFCFF; }

.lp-step-number {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #EAF3FB;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.lp-step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0B3FA8, #1C91CE);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(11,63,168,0.22);
}

.lp-step h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0B2545;
  margin: 0 0 10px;
}

.lp-step p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #5B6B82;
  margin: 0;
}

/* ── Cases grid ──────────────────────────────────────────── */

.lp-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.lp-case-card {
  background: #fff;
  border: 1px solid #E8EFF8;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.lp-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(11,63,168,0.1);
}

.lp-case-card-header {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.lp-case-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.lp-case-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,0.5), rgba(11,37,69,0) 55%);
  pointer-events: none;
}

.lp-case-card-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.lp-case-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(11,37,69,0.45);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lp-case-card-metric {
  position: absolute;
  bottom: 16px; left: 20px;
}

.lp-case-card-metric-value {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}

.lp-case-card-metric-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-top: 2px;
}

.lp-case-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-case-card-client {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1C91CE;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.lp-case-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: #0B2545;
  margin: 0 0 10px;
}

.lp-case-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5B6B82;
  margin: 0 0 16px;
}

.lp-case-card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0B3FA8;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

/* ── CTA banner ──────────────────────────────────────────── */

.lp-cta-banner {
  background: linear-gradient(140deg, #0B3FA8, #072C77);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #1C91CE, transparent 65%);
  filter: blur(80px);
  top: -150px; right: -100px;
  opacity: 0.4;
  pointer-events: none;
}

.lp-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.lp-cta-inner h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
}

.lp-cta-inner p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #C7DCF2;
  margin: 0 0 36px;
}

.lp-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── SEO tekst sectie ────────────────────────────────────── */

.lp-seo {
  background: #fff;
  padding: 96px 24px;
  border-top: 1px solid #EDF3FA;
}

.lp-seo-text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: #3a4a63;
}

.lp-seo-text p { margin: 0 0 22px; }

.lp-seo-text h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0B2545;
  margin: 36px 0 14px;
}

/* ── FAQ accordion ───────────────────────────────────────── */

.lp-faq {
  background: #F6F9FD;
  padding: 96px 24px;
  border-top: 1px solid #EDF3FA;
}

.lp-faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.lp-faq-header h2 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0B2545;
  margin: 18px 0 0;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid #E8EFF8;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-faq-item.open {
  box-shadow: 0 8px 32px rgba(11,63,168,0.08);
  border-color: #c3d8f0;
}

.lp-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.lp-faq-question {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #0B2545;
  line-height: 1.3;
}

.lp-faq-chevron {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #EAF3FB;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
}

.lp-faq-chevron svg { transition: stroke 0.2s; }

.lp-faq-item.open .lp-faq-chevron {
  transform: rotate(180deg);
  background: #0B3FA8;
}

.lp-faq-item.open .lp-faq-chevron svg { stroke: #fff; }

.lp-faq-answer {
  display: none;
  padding: 0 28px 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: #5B6B82;
  border-top: 1px solid #F0F5FB;
}

/* ── Onderliggende diensten (sub-pagina kaarten) ─────────── */
.lp-subpages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.lp-subpage-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid #E8EFF8;
  border-radius: 18px;
  padding: 28px 26px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-subpage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(11,63,168,0.10);
  border-color: #c3d8f0;
}

.lp-subpage-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0B2545;
  margin: 0 0 8px;
}

.lp-subpage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5B6B82;
  margin: 0;
}

.lp-subpage-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0B3FA8;
}

.lp-subpage-card:hover .lp-subpage-card-link span { transform: translateX(3px); }
.lp-subpage-card-link span { transition: transform 0.2s; display: inline-block; }

.lp-faq-answer-inner { padding-top: 18px; }

.lp-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6a7a93;
  background: #F4F7FB;
  border: 1px solid #E3ECF6;
  border-radius: 9px;
  text-decoration: none;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}

.lp-faq-cta svg {
  opacity: 0.85;
  transition: transform 0.18s;
}

.lp-faq-cta:hover {
  color: #44546b;
  background: #ECF2F9;
  border-color: #d3e0ee;
}

.lp-faq-cta:hover svg { transform: translateY(-1px); }

.lp-faq-item.open .lp-faq-answer { display: block; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1080px) {
  .lp-hero-inner {
    padding: 140px 20px 80px;
  }

  .lp-hero-stat {
    padding: 8px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex: 0 0 50%;
  }

  .lp-hero-stat:nth-last-child(-n+2) { border-bottom: none; }

  .lp-section { padding: 64px 20px; }
  .lp-seo, .lp-faq { padding: 64px 20px; }
  .lp-cta-banner { padding: 64px 20px; }

  .lp-voordelen-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-diensten-grid {
    grid-template-columns: 1fr;
  }

  .lp-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .lp-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero-stat { flex: 0 0 100%; }

  .lp-steps-grid { grid-template-columns: 1fr; }

  .lp-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .lp-faq-btn { padding: 20px; }
  .lp-faq-answer { padding: 0 20px 20px; }
  .lp-faq-question { font-size: 0.97rem; }
}
