/* ===================================================
   LaNexus — Infographic stijlen
   =================================================== */

/* ===================================================
   1. DRIE GARANTIES — Hexagon cards
   =================================================== */

.garanties-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.garanties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.garantie-item {
  background: var(--black-card);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--transition);
  position: relative;
}

.garantie-item:hover {
  background: #1c1c1c;
}

.garantie-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color var(--transition);
}

.garantie-item:hover .garantie-number {
  color: rgba(201,168,76,0.2);
}

.garantie-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
}

.garantie-item h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
}

.garantie-item p {
  font-size: 0.9375rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin: 0;
}

.garantie-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: auto;
}

/* ===================================================
   2. IMPACT STATISTIEKEN
   =================================================== */

.stats-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-block {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--black-border);
  position: relative;
  transition: background var(--transition);
}

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

.stat-block:hover {
  background: rgba(201,168,76,0.03);
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.stat-block:hover::after {
  width: 60%;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===================================================
   3. STAPPEN PROCES TIJDLIJN
   =================================================== */

.process-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 0;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--black);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}

.step-circle::after {
  content: attr(data-num);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .step-circle {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: scale(1.08);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===================================================
   4. NIEUWSBRIEF CTA INFOGRAPHIC
   =================================================== */

.newsletter-cta {
  background: var(--black);
  padding: 80px 24px;
}

.newsletter-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at -10% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.newsletter-content p {
  font-size: 0.9375rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-light);
}

.newsletter-benefits li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.newsletter-form-wrap {
  position: relative;
  z-index: 1;
}

.newsletter-form .form-group {
  margin-bottom: 14px;
}

.newsletter-form input {
  background: rgba(255,255,255,0.04);
  border-color: var(--black-border);
}

.newsletter-no-spam {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter-no-spam::before {
  content: '🔒';
  font-size: 0.75rem;
}

/* ===================================================
   5. GRATIS TOOLS CTA INFOGRAPHIC
   =================================================== */

.gratis-tools-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gratis-tools-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 110% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.gratis-tools-content {
  position: relative;
  z-index: 1;
  order: 2;
}

.gratis-tools-visual {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gratis-tool-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all var(--transition);
}

.gratis-tool-item:hover {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.04);
}

.tool-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tool-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
}

.tool-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

.tool-badge {
  margin-left: auto;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ===================================================
   6. VERGELIJKINGSTABEL — Zonder vs Met LaNexus
   =================================================== */

.comparison-section {
  background: var(--black);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-col {
  padding: 0;
}

.comparison-col-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.comparison-col:first-child .comparison-col-header {
  background: rgba(201,76,76,0.08);
  border-bottom: 1px solid rgba(201,76,76,0.2);
  color: #ef9a9a;
}

.comparison-col:last-child .comparison-col-header {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  border-left: 1px solid var(--black-border);
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid var(--black-border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  flex: 1;
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-light);
  min-height: 60px;
}

.comparison-cell:last-child {
  border-left: 1px solid var(--black-border);
}

.comparison-cell .ci {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================================================
   RESPONSIVE — infographics
   =================================================== */

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

  .stat-block {
    border-bottom: 1px solid var(--black-border);
  }

  .stat-block:nth-child(2) {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .garanties-grid {
    grid-template-columns: 1fr;
    background: var(--black-card);
    gap: 0;
  }

  .garantie-item {
    border-bottom: 1px solid var(--black-border);
  }

  .garantie-item:last-child {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block {
    padding: 32px 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-border);
  }

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

  .step-circle {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .step-content {
    padding-top: 4px;
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .gratis-tools-box {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 24px;
  }

  .gratis-tools-content {
    order: 1;
  }

  .gratis-tools-visual {
    order: 2;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-col:last-child .comparison-col-header {
    border-left: none;
    border-top: 1px solid var(--black-border);
  }

  .comparison-cell:last-child {
    border-left: none;
    border-top: 1px solid var(--black-border);
  }

  .comparison-row {
    flex-direction: column;
  }
}

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

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--black-border);
  }

  .stat-block:last-child {
    border-bottom: none;
  }
}

/* ===================================================
   VLIEGENDE PROMO-KAARTEN
   Langzaam inschuiven vanuit rechts, daarna 2x pulsen,
   weggeklikbaar met X-knop
   =================================================== */

@keyframes flyInRight {
  0%   { transform: translateX(120%); opacity: 0; }
  60%  { transform: translateX(-6px); opacity: 1; }
  100% { transform: translateX(0);    opacity: 1; }
}

@keyframes flyOutRight {
  0%   { transform: translateX(0);    opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}

@keyframes promoCardPulse {
  0%   { box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 0 rgba(201,168,76,0); }
  40%  { box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 8px rgba(201,168,76,0.18); }
  100% { box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 0 rgba(201,168,76,0); }
}

.promo-stack {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}

.promo-card {
  background: var(--black-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 20px 20px 20px 22px;
  width: 300px;
  max-width: calc(100vw - 56px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  position: relative;
  pointer-events: auto;
  overflow: hidden;

  /* beginstand: buiten beeld */
  transform: translateX(130%);
  opacity: 0;
  transition: none;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-dim));
  border-radius: 0;
}

/* Staat: vlieg naar binnen */
.promo-card.entering {
  animation: flyInRight 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Staat: pulseer na binnenkomst */
.promo-card.pulsing {
  animation: promoCardPulse 0.8s ease-out 2;
}

/* Staat: vlieg naar buiten */
.promo-card.leaving {
  animation: flyOutRight 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

/* Staat: zichtbaar en stil */
.promo-card.visible {
  transform: translateX(0);
  opacity: 1;
}

.promo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
  padding: 0;
}

.promo-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.promo-icon {
  font-size: 1.375rem;
  margin-bottom: 8px;
  display: block;
}

.promo-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  padding-right: 20px;
  letter-spacing: 0;
  line-height: 1.3;
}

.promo-card p {
  font-size: 0.8125rem;
  color: var(--gray-light);
  line-height: 1.55;
  margin-bottom: 12px;
}

.promo-card .promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.promo-card .promo-btn:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* Mobiel: iets smaller en lager */
@media (max-width: 768px) {
  .promo-stack {
    bottom: 80px;
    right: 16px;
    left: 16px;
    align-items: stretch;
  }

  .promo-card {
    width: 100%;
    max-width: 100%;
  }
}
