/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}




/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  height: 36px;
}

/* NAV */
nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #2563eb;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

.btn.primary {
  margin-top: 24px;
}

/* HERO */
.hero {
  padding: 140px 0 120px;
  background:
    radial-gradient(circle at top left, #dbeafe, transparent 60%),
    radial-gradient(circle at bottom right, #cffafe, transparent 60%);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  max-width: 640px;
  color: #475569;
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section.light {
  background: #f8fafc;
}

.section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-text {
  max-width: 720px;
  font-size: 18px;
  color: #475569;
}

/* USE CASES */
.use-cases {
  padding: 140px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.use-cases-header {
  text-align: center;
  margin-bottom: 80px;
}

.use-cases-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.use-cases-header p {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

/* GRID */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.use-case-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.use-case-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 12px;
}

.use-case-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* ICON */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #ffffff;
}

/* ICON COLORS */
.icon.blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.icon.purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.icon.orange {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

/* HOW WE WORK */
.how-we-work {
  padding: 140px 0;
  background: #ffffff;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.how-header p {
  font-size: 18px;
  color: #475569;
}

/* GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

/* CARD */
.step-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 24px 40px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94a3b8;
  margin: 20px 0 8px;
}

/* ============================
   AI EXPERTS SECTION
============================ */
.ai-experts {
  padding: 160px 0;
  background: #ffffff;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.ai-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.ai-text h2 span {
  color: #2563eb;
}

.ai-intro {
  font-size: 18px;
  color: #334155;
  max-width: 640px;
  margin-bottom: 16px;
}

.ai-intro.light {
  color: #64748b;
}

/* FEATURES */
.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.ai-feature {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.ai-feature h4 {
  margin: 16px 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.ai-feature p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* ICONS */
.ai-feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

.icon.blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.icon.purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.icon.orange {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

/* VISUAL */
.ai-visual-card {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

.ai-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#60a5fa 2px, transparent 2px);
  background-size: 36px 36px;
  opacity: 0.35;
}

.ai-shapes {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, #ec4899 10px, transparent 11px),
    radial-gradient(circle at 40% 80%, #a855f7 10px, transparent 11px),
    radial-gradient(circle at 60% 80%, #38bdf8 10px, transparent 11px),
    radial-gradient(circle at 80% 80%, #22d3ee 10px, transparent 11px);
}


.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

/* ICON */
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}

/* ICON COLORS */
.step-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.step-icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.step-icon.purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.step-icon.orange {
  background: linear-gradient(135deg, #f97316, #fb7185);
}

.step-icon.violet {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.step-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}


/* CARDS */
.card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  font-size: 22px;
}

/* PRICING */
.price {
  font-size: 32px;
  font-weight: 800;
  margin: 16px 0;
}

.card ul {
  padding-left: 20px;
}

.card li {
  margin-bottom: 10px;
}

/* PRICING */
.pricing {
  padding: 160px 0;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 18px;
  color: #475569;
}

/* BILLING TOGGLE */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  width: fit-content;
  margin: 0 auto 80px;
}

.billing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #334155;
}

.billing-toggle button span {
  color: #16a34a;
  margin-left: 4px;
}

.billing-toggle button.active {
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;

  max-width: 900px;   /* bepaalt hoe breed de pricing samen is */
  margin: 0 auto;     /* dit centreert de hele grid */
}


/* CARD */
.pricing-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  position: relative;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.plan-desc {
  color: #64748b;
  margin-bottom: 24px;
}

/* PRICE */
.price {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 28px;
}

.price span {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

.price.custom {
  font-size: 28px;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.pricing-card li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.pricing-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* ============================
   CHATBOT DEMO SECTION
============================ */
.chatbot-demo {
  padding: 160px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.demo-header {
  text-align: center;
  margin-bottom: 60px;
}

.demo-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.demo-header p {
  font-size: 18px;
  color: #475569;
}

/* DEMO WINDOW */
.demo-window {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

/* TOP BAR */
.demo-bar {
  height: 48px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.demo-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.demo-bar .dot.red {
  background: #ef4444;
}

.demo-bar .dot.yellow {
  background: #facc15;
}

.demo-bar .dot.green {
  background: #22c55e;
}

.demo-title {
  margin-left: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* IFRAME */
.demo-content iframe {
  border: none;
  display: block;
  width: 100%;
}


/* POPULAR */
.pricing-card.popular {
  border: 2px solid #3b82f6;
  transform: translateY(-20px);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* BUTTON VARIANTS */
.btn.dark {
  background: #0f172a;
}

/* SETUP FEE */
.setup-fee {
  text-align: center;
  margin-top: 48px;
  color: #475569;
}
/* HEADER LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

/* HERO ADVANCED */
.hero-advanced {
  padding: 160px 0;
  background:
    radial-gradient(circle at top left, #dbeafe, transparent 60%),
    radial-gradient(circle at bottom right, #cffafe, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* TEXT */
.hero-text h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text .muted {
  color: #2563eb;
  font-weight: 800;
}

.hero-text .bold {
  font-weight: 900;
  color: #0f172a;
}

.hero-desc {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin-bottom: 16px;
}

.hero-desc.light {
  color: #64748b;
}

/* ACTIONS */
.hero-actions {
     align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  line-height: 1;
}

.btn.ghost {
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #c7d2fe;
}

/* VISUAL */
.hero-visual {
  position: relative;
}

.ai-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  height: 320px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  overflow: hidden;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#38bdf8 2px, transparent 2px);
  background-size: 32px 32px;
  opacity: 0.35;
}

.ai-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 24px;
}
/* ============================
   DEMO CONTACT SECTION
============================ */
.demo-contact {
  padding: 160px 0;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  text-align: center;
}

.demo-contact-inner {
  max-width: 720px;
}

.demo-contact h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.demo-intro {
  font-size: 18px;
  color: #334155;
  margin-bottom: 32px;
}

.demo-info {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

.demo-info p {
  color: #475569;
  margin-bottom: 16px;
}

.demo-info ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}

.demo-info li {
  margin-bottom: 8px;
  font-weight: 500;
  color: #0f172a;
}

.demo-info li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 8px;
}

/* ============================
   EMAIL DEMO CARD
============================ */
.email-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.email-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* ICON */
.email-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}

/* TEXT */
.email-text span {
  display: block;
  font-size: 13px;
  color: #64748b;
}

.email-text strong {
  font-size: 16px;
  color: #0f172a;
}
/* ============================
   FOOTER
============================ */
.site-footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #cbd5f5;
  padding: 80px 0 40px;
  margin-top: 120px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* BRAND */
.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5f5;
}

/* INFO */
.footer-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-info p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #cbd5f5;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  padding-top: 24px;
}




/* HIGHLIGHT */
.card.highlight {
  border: 2px solid #2563eb;
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

/* FOOTER */
.footer {
  padding: 40px 0;
  background: #020617;
  color: #cbd5f5;
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav a {
    margin-left: 16px;
  }

  .hero {
    padding: 100px 0;
  }

  .section {
    padding: 80px 0;
  }
}

/* ============================
   HEADER LOGO HOVER EFFECT
============================ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease;
}

.logo-wrap img {
  transition: transform 0.25s ease;
}

.logo-wrap span {
  transition: color 0.25s ease;
}

.logo-wrap:hover {
  transform: translateY(-2px);
}

.logo-wrap:hover img {
  transform: rotate(-3deg) scale(1.05);
}

.logo-wrap:hover span {
  color: #2563eb;
}



/* =========================================================
   SAFE OVERRIDES – LOGO FIX (NON-DESTRUCTIVE)
   These rules intentionally override conflicting styles
   without changing the rest of the design.
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-wrap img {
  position: static !important;
  height: 36px !important;
  width: auto !important;
  max-width: none !important;
}\n\n
/* =========================================================
   HEADER NAV CTA ALIGNMENT FIX
========================================================= */

nav {
  display: flex;
  align-items: center;
}

/* ============================
   AI FEATURE CARD HOVER
============================ */
.ai-feature {
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.ai-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
}

/* Icon subtle animation */
.ai-feature .icon {
  transition: transform 0.3s ease;
}

.ai-feature:hover .icon {
  transform: scale(1.1) rotate(3deg);
}


nav .btn {
  height: 44px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}


/* =========================================================
   SURGICAL BUTTON VERTICAL ALIGNMENT FIX (ONLY)
   Does NOT change layout, logo, padding, height, or display
========================================================= */

.header .btn {
  display: flex;
  align-items: center;
  height: 44px;
}


.hero-actions .btn {
  align-self: center;
}

/* ============================
   MOBILE RESPONSIVE FIX
============================ */
@media (max-width: 768px) {

  /* CONTAINER */
  .container {
    padding: 0 16px;
  }

  /* HEADER */
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
  }

  nav a {
    margin-left: 0;
    font-size: 14px;
  }

  .header .btn {
    margin-top: 12px;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* AI EXPERTS */
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-features {
    grid-template-columns: 1fr;
  }

  /* USE CASES */
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  /* HOW WE WORK */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* PRICING */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}


/* ============================
   CLEAN MOBILE HAMBURGER
============================ */

/* default: desktop */
.menu-toggle {
  display: none;
}

/* desktop nav */
.nav {
  display: flex;
  align-items: center;
}

/* mobile only */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    margin: 0;
    font-size: 16px;
  }
}

/* =================================================
   FINAL HAMBURGER AUTHORITY RULES
   (overrides alles erboven)
================================================= */

/* Desktop: NO hamburger */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
    position: static !important;
  }
}

/* Mobile: hamburger + hidden nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav {
    display: none !important;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }

  .nav.active {
    display: flex !important;
  }
}
/* ============================
   TIGHTER SECTION SPACING
============================ */

section {
  padding: 100px 0;
}

.hero-advanced,
.ai-experts,
.pricing,
.chatbot-demo,
.demo-contact {
  padding: 120px 0;
}

.use-cases,
.how-we-work {
  padding: 110px 0;
}

/* Mobile: nog iets compacter */
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .hero-advanced {
    padding-top: 100px;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   HERO AI VISUAL ANIMATION
============================ */

.hero-visual .ai-card {
  animation: floatCard 6s ease-in-out infinite;
}

.hero-visual .ai-chip {
  animation: pulseChip 3s ease-in-out infinite;
}

.hero-visual .dot-grid {
  animation: driftDots 10s linear infinite;
}

@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes pulseChip {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes driftDots {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(10px, -10px); }
  100% { transform: translate(0, 0); }
}

/* ============================
   AI VISUAL RIGHT ANIMATION
============================ */

.ai-visual-card {
  animation: floatVisual 7s ease-in-out infinite;
}

.ai-dots {
  animation: fadeDots 4s ease-in-out infinite;
}

.ai-shapes {
  animation: rotateShapes 12s linear infinite;
}

@keyframes floatVisual {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(14px); }
  100% { transform: translateY(0); }
}

@keyframes fadeDots {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes rotateShapes {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




/* =================================================
   MOBILE FIXES – APPENDED ONLY (NO REMOVALS ABOVE)
================================================= */

/* Hard stop horizontal scroll */
html, body {
  overflow-x: hidden !important;
  width: 100%;
}

* {
  max-width: 100vw;
}

/* Clean hamburger menu behaviour */
.menu-toggle {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .header-inner {
    position: relative;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .nav.active {
    display: flex;
  }

  /* Force all grids to single column */
  .steps-grid,
  .use-cases-grid,
  .ai-features,
  .pricing-grid,
  .hero-grid,
  .ai-grid {
    grid-template-columns: 1fr !important;
  }

  iframe,
  .hero-visual,
  .ai-card,
  .ai-visual-card {
    max-width: 100%;
  }
}
