*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cyan: #00E5FF;
  --bg: #0A0A0A;
  --card: #111111;
  --ribbit: #4A7C3F;
  --ribbit-light: #6AAE5E;
  --clubwise: #C8373A;
  --clubwise-light: #E05558;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #fff;
}

/* ══ HERO ══════════════════════════════════════════════ */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #04081a;
}

#cryptonBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ══ NAV ═══════════════════════════════════════════════ */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--cyan) !important;
  color: #04081a !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.04em;
}

/* Accentlijn — niet van kant tot kant */
.nav-line {
  position: relative;
  z-index: 10;
  margin: 0 3rem;
  height: 0.5px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 229, 255, 0.5) 20%,
      rgba(0, 229, 255, 0.5) 80%,
      transparent 100%);
}

/* ══ HERO CONTENT ══════════════════════════════════════ */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-logo {
  width: 420px;
  max-width: 78vw;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1) drop-shadow(0 0 28px rgba(0, 229, 255, 0.25));
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.52);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4.5rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}

.btn-primary {
  background: var(--cyan);
  color: #04081a;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-ghost {
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* Product cards in hero */
.hero-products {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hpcard {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.hpcard:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hpcard-ribbit:hover {
  border-color: rgba(74, 124, 63, 0.55);
}

.hpcard-clubwise:hover {
  border-color: rgba(200, 55, 58, 0.5);
}

.hpcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hpcard-icon-r {
  background: rgba(74, 124, 63, 0.18);
}

.hpcard-icon-c {
  background: rgba(200, 55, 58, 0.15);
}

.hpcard-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hpcard-text {
  text-align: left;
}

.hpcard-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}

.hpcard-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.5;
}

.hpcard-arrow {
  margin-left: auto;
  font-size: 13px;
  flex-shrink: 0;
}

.hpcard-ribbit .hpcard-arrow {
  color: rgba(74, 124, 63, 0.7);
}

.hpcard-clubwise .hpcard-arrow {
  color: rgba(200, 55, 58, 0.6);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.3s;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(0, 229, 255, 0.6);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease infinite;
}

/* ══ PAGE BODY ════════════════════════════════════════ */
.divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 3rem;
}

.section {
  padding: 5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 540px;
}

/* ══ STATS ════════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3.5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.stat {
  padding: 1.25rem 1.5rem;
  border-left: 0.5px solid rgba(255, 255, 255, 0.07);
}

.stat:first-child {
  border-left: none;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num span {
  font-size: 20px;
  color: var(--cyan);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
}

/* ══ PRODUCTEN ════════════════════════════════════════ */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.pcard {
  background: var(--card);
  border-radius: 16px;
  padding: 2.25rem;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.pcard-ribbit::before {
  background: var(--ribbit);
}

.pcard-clubwise::before {
  background: var(--clubwise);
}

.pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
}

.pill-r {
  background: rgba(74, 124, 63, 0.15);
  color: var(--ribbit-light);
}

.pill-c {
  background: rgba(200, 55, 58, 0.15);
  color: var(--clubwise-light);
}

.pcard-logo {
  height: 52px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
}

.pcard-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pcard-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.pcard-features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-g {
  background: var(--ribbit);
}

.dot-r {
  background: var(--clubwise);
}

.pcard-link {
  font-size: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.pcard-link:hover {
  gap: 9px;
}

.plink-r {
  color: var(--ribbit-light);
}

.plink-c {
  color: var(--clubwise-light);
}

/* ══ WAAROM ═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-card {
  background: #0F0F0F;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.75rem;
}

.why-icon {
  font-size: 20px;
  margin-bottom: 1rem;
}

.why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.why-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

/* ══ SECTOREN ═════════════════════════════════════════ */
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.sector-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: 'Space Grotesk', sans-serif;
}

/* ══ AANPAK ═══════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.1);
}

.step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111;
  border: 0.5px solid rgba(0, 229, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
}

/* ══ TESTIMONIAL ══════════════════════════════════════ */
.testimonial-block {
  background: #0F0F0F;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  margin-top: 3rem;
}

.testimonial-quote {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 0.5px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* ══ CONTACT ══════════════════════════════════════════ */
.contact-section {
  padding: 5rem 3rem;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.07);
}

.contact-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.contact-info {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: var(--cyan);
}

.btn-cta {
  background: var(--cyan);
  color: #04081a;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.88;
}

/* ══ FOOTER ═══════════════════════════════════════════ */
.footer {
  padding: 2.5rem 3rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo-txt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}

.footer-product-logos {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-plogo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.25;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  padding: 1.25rem 3rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.05);
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
}

/* ══ ANIMATIES ════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ══ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 680px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav-line {
    margin: 0 1.25rem;
  }

  .hero-content {
    padding: 3rem 1.25rem 2rem;
  }

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

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

  .stat {
    border-left: none;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
  }

  .stat:first-child {
    border-top: none;
  }

  .products {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .section {
    padding: 3rem 1.5rem;
  }

  .contact-section {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .divider {
    margin: 0 1.5rem;
  }
}