/* ============================================================
   EAVY.IO — WEBSITE STYLESHEET
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #3B1FBF;
  --color-blue: #3B4BF9;
  --color-blue-deep: #4318FF;
  --color-purple: #7B3FE4;
  --color-magenta: #D946A8;
  --color-gradient-start: #4318FF;
  --color-gradient-end: #D946A8;
  --color-white: #FFFFFF;
  --color-gray: #6B7280;
  --color-light-gray: #F3F4F6;
  --color-border: #E5E7EB;
  --color-dark: #1F2937;
  --color-darker: #111827;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --gradient: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
  --gradient-diagonal: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));

  --nav-height: 72px;
  --section-padding: 120px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* === NAVIGATIE === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo-icon {
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(10deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  color: white;
  transition: all 0.4s ease;
}

.nav.scrolled .nav-logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: white;
}

/* Nav links op scrolled (lichte achtergrond) */
.nav.scrolled .nav-link {
  color: var(--color-dark);
}

.nav.scrolled .nav-link:hover {
  color: var(--color-primary);
  background: rgba(67, 24, 255, 0.05);
}

.nav.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-link-cta {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 8px;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.nav-link-cta:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav.scrolled .nav-link-cta {
  background: var(--color-blue) !important;
  border-color: transparent;
}

.nav.scrolled .nav-link-cta:hover {
  background: var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(59, 75, 249, 0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTIE === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(67, 24, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 63, 228, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(217, 70, 168, 0.2) 0%, transparent 50%),
    linear-gradient(160deg, #0c0a2a 0%, #1a1145 30%, #1e0f3e 50%, #2a1035 70%, #1a0a2e 100%);
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(67, 24, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(217, 70, 168, 0.06) 0%, transparent 40%);
  z-index: 0;
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-magenta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-gradient {
  background: linear-gradient(90deg, #8B7FFF, #E88BD7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #5B3FFF, #D946A8);
  color: white;
  box-shadow: 0 4px 24px rgba(91, 63, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91, 63, 255, 0.5);
}

.btn-primary svg {
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-nodes {
  width: 100%;
  height: 100%;
}

/* Node floating animations */
.node-1 { animation: float1 6s ease-in-out infinite; }
.node-2 { animation: float2 7s ease-in-out infinite; }
.node-3 { animation: float3 5s ease-in-out infinite; }
.node-4 { animation: float4 8s ease-in-out infinite; }
.node-center { animation: floatCenter 4s ease-in-out infinite; transform-origin: 200px 200px; }

/* Line draw animations */
.node-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease forwards;
}

.line-1 { animation-delay: 0.2s; }
.line-2 { animation-delay: 0.4s; }
.line-3 { animation-delay: 0.6s; }
.line-4 { animation-delay: 0.8s; }
.line-5 { animation-delay: 1.0s; }
.line-6 { animation-delay: 1.2s; }
.line-7 { animation-delay: 1.4s; }
.line-8 { animation-delay: 1.6s; }
.line-9 { animation-delay: 1.8s; }

/* Data pulse glow */
.data-pulse {
  opacity: 0;
  animation: pulseAppear 0.5s ease 2.2s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--gradient);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

/* === SECTIES — BASIS === */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--color-light-gray);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-gray);
  max-width: 640px;
}

/* === WAT KAN HET — FEATURE INTRO === */
.feature-intro {
  margin-bottom: 64px;
}

.feature-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-blue);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(59, 75, 249, 0.06);
  border-radius: 100px;
}

/* === STAPPEN GRID === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.step-card {
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: rgba(67, 24, 255, 0.2);
  box-shadow: 0 8px 32px rgba(67, 24, 255, 0.08);
  transform: translateY(-4px);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(67, 24, 255, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: rgba(67, 24, 255, 0.06);
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.step-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray);
}

/* === TEAMS SHOWCASE === */
.teams-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.teams-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.teams-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 28px;
}

.teams-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.teams-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
}

.teams-benefits li svg {
  flex-shrink: 0;
}

/* === TEAMS MOCKUP === */
.teams-mockup {
  perspective: 1000px;
}

.teams-window {
  background: white;
  border-radius: 12px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.4s ease;
}

.teams-window:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Titlebar */
.teams-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}

.teams-titlebar-dots {
  display: flex;
  gap: 6px;
}

.teams-titlebar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.teams-titlebar-dots span:nth-child(1) { background: #FF5F56; }
.teams-titlebar-dots span:nth-child(2) { background: #FFBD2E; }
.teams-titlebar-dots span:nth-child(3) { background: #27C93F; }

.teams-titlebar-title {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chat */
.teams-chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}

.teams-msg {
  display: flex;
  gap: 10px;
}

.teams-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.teams-avatar-user {
  background: linear-gradient(135deg, #4318FF, #7B3FE4);
  color: white;
}

.teams-avatar-bot {
  background: rgba(67, 24, 255, 0.08);
}

.teams-msg-content {
  flex: 1;
  min-width: 0;
}

.teams-msg-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.teams-msg-time {
  font-weight: 400;
  color: #9CA3AF;
  margin-left: 6px;
}

.teams-msg-badge {
  font-size: 10px;
  font-weight: 600;
  color: #5059C9;
  background: rgba(80, 89, 201, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.teams-msg-bubble {
  font-size: 14px;
  line-height: 1.6;
  border-radius: 8px;
  padding: 10px 14px;
}

.teams-bubble-user {
  background: #E8EBFA;
  color: var(--color-dark);
  border-top-left-radius: 2px;
}

.teams-bubble-bot {
  background: #f9f9fb;
  border: 1px solid #eee;
  color: var(--color-dark);
  border-top-left-radius: 2px;
}

.teams-bubble-bot p {
  margin-bottom: 10px;
}

.teams-bubble-bot p:last-child {
  margin-bottom: 0;
}

.teams-msg-note {
  font-size: 13px;
  color: var(--color-gray);
  margin-top: 6px;
}

.teams-msg-note strong {
  color: var(--color-dark);
}

/* Teams table */
.teams-table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  margin: 8px 0;
}

.teams-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

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

.teams-table-header {
  background: #f0f1f6;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

.trend-up { color: #059669; font-weight: 600; }
.trend-down { color: #DC2626; font-weight: 600; }
.trend-neutral { color: #9CA3AF; font-weight: 500; }

/* Typing indicator */
.teams-typing {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
}

.teams-typing span {
  width: 6px;
  height: 6px;
  background: #bbb;
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.teams-typing span:nth-child(2) { animation-delay: 0.2s; }
.teams-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Teams input */
.teams-input {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  gap: 12px;
}

.teams-input-field {
  flex: 1;
  font-size: 13px;
  color: #bbb;
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #eee;
}

.teams-input-send {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80, 89, 201, 0.08);
  border-radius: 8px;
  cursor: pointer;
}

/* === SECTION CTA (inline) === */
.section-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.section-cta-text {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 20px;
}

/* === SECTION DARK (Oplossingen) === */
.section-dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(67, 24, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 70, 168, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0c0a2a 0%, #1a1145 30%, #1e0f3e 60%, #1a0a2e 100%);
  color: white;
}

.feature-intro-light { }

.feature-label-light {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.section-title-light {
  color: white !important;
}

.gradient-text-light {
  background: linear-gradient(90deg, #8B7FFF, #E88BD7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-light {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* === USE CASES GRID === */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.usecase-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.usecase-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.usecase-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(67, 24, 255, 0.15), rgba(217, 70, 168, 0.1));
  border-color: rgba(139, 127, 255, 0.2);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 20px;
}

.usecase-card-featured .usecase-icon {
  grid-row: 1 / 3;
}

.usecase-card-featured .usecase-tag {
  grid-column: 2;
}

.usecase-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(139, 127, 255, 0.3), rgba(232, 139, 215, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usecase-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.usecase-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.usecase-text em {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.usecase-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #E88BD7;
  padding: 4px 12px;
  background: rgba(232, 139, 215, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(232, 139, 215, 0.2);
}

/* === INTEGRATIONS BAR === */
.integrations-bar {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.integrations-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.integrations-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.integration-item {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.integration-name {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.integration-divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

/* === ABOUT / OVER ONS === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--color-gray);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: rgba(67, 24, 255, 0.15);
  box-shadow: 0 4px 20px rgba(67, 24, 255, 0.06);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(67, 24, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.about-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* === CONTACT / FINAL CTA === */
.section-cta-final {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(67, 24, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(217, 70, 168, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #0c0a2a 0%, #1a1145 40%, #2a1035 100%);
  color: white;
  padding: 100px 0;
}

.cta-final {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}

.cta-final-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

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

.btn-white {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* === SECURITY GRID (Data & veiligheid) === */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.security-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.security-card:hover {
  border-color: rgba(67, 24, 255, 0.15);
  box-shadow: 0 4px 20px rgba(67, 24, 255, 0.06);
  transform: translateY(-2px);
}

.security-card-main {
  padding: 36px 32px;
}

.security-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(67, 24, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.security-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray);
}

.security-card-icon-sm {
  width: 48px;
  height: 48px;
  background: rgba(67, 24, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.security-card-title-sm {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.security-card-text-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray);
}

/* === USECASE RIBBON (In ontwikkeling) === */
.usecase-card-dev {
  position: relative;
  overflow: hidden;
}

.usecase-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: linear-gradient(90deg, #D946A8, #E88BD7);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 40px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(217, 70, 168, 0.3);
  z-index: 1;
}

/* === FOUNDERS GRID === */
.founders-grid {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

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

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.founder-avatar-1 {
  background: linear-gradient(135deg, #4318FF, #7B3FE4);
}

.founder-avatar-2 {
  background: linear-gradient(135deg, #7B3FE4, #D946A8);
}

.founder-avatar-3 {
  background: linear-gradient(135deg, #D946A8, #E88BD7);
}

.founder-info {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.3;
}

.founder-role {
  font-size: 13px;
  color: var(--color-gray);
}

/* === ABOUT CARD BODY (uitlijning fix) === */
.about-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* === FOOTER === */
.footer {
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.5);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* === KEYFRAMES === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(4px, -8px); }
  66% { transform: translate(-4px, 4px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-6px, 5px); }
  66% { transform: translate(5px, -6px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(5px, 6px); }
  66% { transform: translate(-6px, -4px); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-4px, -5px); }
  66% { transform: translate(6px, 4px); }
}

@keyframes floatCenter {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -4px) scale(1.03); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes pulseAppear {
  to { opacity: 0.8; }
}

@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 520px;
  }

  .hero-visual-card {
    max-width: 360px;
  }

  .hero-title {
    font-size: 52px;
  }

  /* Zo werkt het */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .teams-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teams-text {
    text-align: center;
  }

  .teams-benefits {
    align-items: center;
  }

  .teams-window {
    transform: none;
  }

  /* Oplossingen */
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .usecase-card-featured {
    grid-template-columns: 1fr;
  }

  .usecase-card-featured .usecase-icon {
    grid-row: auto;
  }

  .usecase-card-featured .usecase-tag {
    grid-column: auto;
  }

  /* Data & veiligheid */
  .security-grid {
    grid-template-columns: 1fr;
  }

  /* Over ons */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founders-grid {
    flex-direction: column;
    gap: 16px;
  }

  .about-stats {
    justify-content: center;
  }

  /* Contact CTA */
  .cta-final-title {
    font-size: 36px;
  }

  .integrations-list {
    gap: 16px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-padding: 80px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-link-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .hero-visual-card {
    max-width: 300px;
  }

  .section-title {
    font-size: 32px;
  }

  /* Mobile nav fix: dark text in side menu */
  .nav-links .nav-link {
    color: var(--color-dark);
  }

  .nav-links .nav-link:hover {
    color: var(--color-primary);
    background: rgba(67, 24, 255, 0.05);
  }

  .nav-links .nav-link-cta {
    background: var(--color-blue) !important;
    color: white !important;
    border-color: transparent;
  }

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

  .teams-showcase {
    grid-template-columns: 1fr;
  }

  .teams-table-row {
    font-size: 12px;
    padding: 6px 10px;
  }

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

  /* Data & veiligheid mobiel */
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card-main {
    padding: 28px 24px;
  }

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

  .founders-grid {
    flex-direction: column;
    gap: 16px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .cta-final-title {
    font-size: 30px;
  }

  .cta-final-actions {
    flex-direction: column;
    max-width: 280px;
    margin: 0 auto;
  }

  .integration-divider {
    display: none;
  }

  .integrations-list {
    gap: 10px;
  }

  .integration-item {
    padding: 8px 16px;
  }

  /* Footer mobiel */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
}
