/* ma.brightbird.be — M&A & ETA
   Accent: diepblauw
*/

:root {
  --accent: #1E3A5F;
  --accent-light: #345578;
  --accent-tint: #E5EAF1;
}

/* Drie-paden hero */
.three-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 48px;
  background: var(--bg-pure);
}

.path {
  padding: clamp(32px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}

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

@media (max-width: 800px) {
  .path {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .path:last-child { border-bottom: none; }
}

.path .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.path h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.path p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.path .arrow-link::after { content: "→"; }
.path .arrow-link:hover { gap: 12px; }

/* Marktanalyse / context-sectie */
.market-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin: 48px 0;
}

.stat {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Modulaire packs */
.packs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--bg-pure);
  border: 1px solid var(--line);
}

.packs-table th,
.packs-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.packs-table th {
  background: var(--accent);
  color: white;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: none;
}

.packs-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

.packs-table tr:last-child td {
  border-bottom: none;
}

.packs-table .pack-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.packs-table .price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .packs-table thead { display: none; }
  .packs-table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    background: var(--bg-pure);
  }
  .packs-table td {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-soft);
  }
  .packs-table td::before {
    content: attr(data-label);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
  }
}

/* Toolbox cards */
.tool-card {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.tool-card:hover {
  border-color: var(--accent);
}

.tool-card .icon-svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 20px;
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.tool-card .download {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.tool-card .tool-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.tool-card .tool-link::after { content: " →"; }

/* Process / werkwijze */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-pure);
}

.process-step {
  padding: clamp(24px, 2.5vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step:nth-child(4n) { border-right: none; }
.process-step:nth-last-child(-n+4) { border-bottom: none; }

@media (max-width: 800px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step:nth-child(4n) { border-right: none; }
  .process-step:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
}

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

.process-step h4 {
  font-size: 15px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 500;
}

.process-step ul li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0;
  line-height: 1.5;
}

/* Boek-feature voor M&A */
.book-feature-ma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 800px) {
  .book-feature-ma { grid-template-columns: 1fr; }
}

.book-cover-ma {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  aspect-ratio: 3/4;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
  font-family: var(--font-display);
}

.book-cover-ma .title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
}

.book-cover-ma .subtitle {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.85;
  text-align: center;
  font-style: italic;
}

/* Aanbod cards */
.listing-card {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  padding: clamp(24px, 2.5vw, 32px);
}

.listing-card .listing-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
  font-weight: 500;
}

.listing-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.listing-meta {
  display: flex;
  gap: 24px;
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink-soft);
}

.listing-meta strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* CTA banner */
.cta-banner {
  background: var(--accent);
  color: white;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  text-align: center;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-ghost {
  border-color: white;
  color: white;
}

.cta-banner .btn-ghost:hover {
  background: white;
  color: var(--accent);
}
