:root {
  --ink: #17243d;
  --muted: #61708b;
  --violet: #5135e8;
  --violet-dark: #4128c4;
  --line: #dbe1eb;
  --radius: 14px;
  --radius-sm: 9px;
}
* {
  box-sizing: border-box;
}
button, input, select, textarea {
  font-family: inherit;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
em {
  color: var(--violet);
  font-style: normal;
}
a, button {
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}
nav,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  border-bottom: 1px solid #edf0f5;
}
nav img,
footer img,
.thanks img {
  width: 190px;
}
.links {
  display: flex;
  gap: 24px;
}
a {
  text-decoration: none;
  color: inherit;
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}
.phone {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.footer-contact {
  text-align: right;
}
.download-links {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.download-links a {
  color: var(--violet);
  font-size: 12px;
  font-weight: bold;
}
.nav-cta {
  color: var(--violet);
  font-weight: bold;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 92px 6vw;
  background: linear-gradient(115deg, #fff 0 52%, #f5f3ff 52%);
}
.hero-copy {
  max-width: 600px;
}
.hero-visual {
  position: relative;
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--violet);
  z-index: 0;
}
.hero-visual::before {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -50px;
  opacity: 0.1;
}
.hero-visual::after {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: -70px;
  opacity: 0.07;
}
.hero-form {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(81, 53, 232, 0.16);
}
.hero-form-title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.hero-form-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.hero-form label {
  margin-bottom: 12px;
}
.hero-form .primary {
  width: 100%;
  margin-top: 4px;
}
.hero-form .privacy {
  margin: 12px 0 0;
}
.hero-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 22px 0 0;
  font-size: 16px;
}
.hero-price strong {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero-price span {
  color: var(--muted);
}
.hero-price .free {
  background: #f0edff;
  color: var(--violet);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
}
.cta-row {
  margin-top: 44px;
  text-align: center;
}
.cta-after-steps {
  margin: 0;
  padding: 0 9vw 64px;
  background: #f5f3ff;
}
.company {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
h1,
h2 {
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 23px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
}
h2 {
  font-size: clamp(32px, 3.8vw, 48px);
}
.hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 570px;
  color: var(--muted);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--violet);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
}
.primary,
.outline,
.link-button {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}
.primary {
  display: inline-block;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(81, 53, 232, 0.25);
}
.primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 14px 28px rgba(81, 53, 232, 0.32);
  transform: translateY(-1px);
}
.outline {
  background: #fff;
  border: 1px solid #aeb7c8;
  color: var(--ink);
}
.outline:hover {
  border-color: var(--violet);
  color: var(--violet);
}
.link-button {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  position: relative;
}
.link-button:hover {
  color: var(--violet);
}
.proof {
  font-size: 13px;
  font-weight: bold;
  color: var(--muted);
}
.band {
  background: var(--ink);
  color: #fff;
  padding: 24px 6vw;
  font-size: 17px;
}
.packages,
.examples {
  padding: 90px 6vw;
}
.packages header,
.examples header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.packages header > p:last-child {
  color: var(--muted);
}
.cards,
.cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  justify-content: center;
  gap: 22px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 18px 40px rgba(23, 36, 61, 0.1);
  transform: translateY(-2px);
}
.featured {
  border: 2px solid var(--violet);
  box-shadow: 0 18px 44px rgba(81, 53, 232, 0.12);
}
.badge {
  position: absolute;
  top: -15px;
  left: 22px;
  background: var(--violet);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
}
.card h3 {
  font-size: 25px;
  margin: 15px 0;
  font-weight: 700;
}
.card > p {
  color: var(--muted);
}
.price {
  margin: 20px 0;
  font-size: 21px;
}
.price strong {
  font-size: 50px;
  font-weight: 800;
}
.price small {
  color: var(--muted);
}
ul {
  list-style: none;
  padding: 0;
  flex: 1;
}
li {
  border-bottom: 1px solid #eef0f4;
  padding: 10px 0;
  color: #516078;
}
li span {
  color: var(--violet);
  margin-right: 9px;
}
.extras {
  background: #f6f4ff;
  color: #4f477e;
  padding: 12px 14px;
  margin: 14px 0 20px;
  border-radius: var(--radius-sm);
}
.cases article {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(23, 36, 61, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cases article:hover {
  box-shadow: 0 20px 46px rgba(23, 36, 61, 0.14);
  transform: translateY(-2px);
}
.cases img {
  display: block;
  width: 100%;
}
.cases p {
  margin: 0;
  padding: 14px 17px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.request {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 88px 9vw;
  background: var(--ink);
  color: #fff;
}
.request > div > p:not(.eyebrow) {
  color: #bdc8d9;
  font-size: 17px;
}
.note {
  border-top: 1px solid #3c4a62;
  padding-top: 20px;
  font-size: 14px !important;
}
.request form {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--ink);
}
label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 15px;
}
input,
select,
textarea {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(81, 53, 232, 0.13);
  outline: none;
}
textarea {
  min-height: 85px;
  resize: vertical;
}
label small {
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
#new-fields {
  background: #f6f4ff;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
#new-fields p {
  font-size: 13px;
  color: #4f477e;
  margin: 0 0 13px;
}
.privacy {
  font-size: 11px;
  color: #788499;
  text-align: center;
}
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #f6f4ff;
}
.thanks main {
  max-width: 650px;
  padding: 45px;
}
.thanks h1 {
  font-size: 48px;
}
.thanks p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 28px;
}
footer {
  border: 0;
  color: var(--muted);
  font-size: 13px;
}
.cookie {
  position: fixed;
  right: 22px;
  bottom: 22px;
  max-width: 390px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(23, 36, 61, 0.22);
  padding: 18px;
  z-index: 5;
  font-size: 13px;
}
.cookie b,
.cookie span {
  display: block;
  margin-bottom: 9px;
}
.cookie button {
  border: 1px solid #aeb7c8;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 9px 12px;
  font-weight: 600;
  cursor: pointer;
}
.cookie button:hover {
  border-color: var(--violet);
  color: var(--violet);
}
.cookie .accept {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  margin-left: 8px;
}
.cookie .accept:hover {
  background: var(--violet-dark);
  color: #fff;
}
@media (max-width: 800px) {
  nav {
    padding: 17px 22px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .links {
    display: none;
  }
  .nav-contact {
    gap: 12px;
    flex-wrap: wrap;
  }
  .phone {
    font-size: 12px;
  }
  .nav-cta {
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    background: #fff;
  }
  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }
  .hero-price strong {
    font-size: 28px;
  }
  .cta-after-steps {
    padding: 0 24px 48px;
  }
  .request {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
  .cards,
  .cases {
    grid-template-columns: 1fr;
  }
  .packages,
  .examples {
    padding: 65px 24px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 22px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-contact {
    text-align: left;
  }
  .download-links {
    flex-wrap: wrap;
  }
  #chat-panel {
    width: calc(100vw - 24px);
    right: -10px;
    height: 68vh;
    max-height: none;
  }
  #webmaister-chat {
    right: 14px;
    bottom: 14px;
  }
}

/* Zo werkt het (3 stappen) */
.steps {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding: 72px 9vw;
  background: #eaf4f1;
}
.steps + .steps {
  background: #f5f3ff;
}
.steps h2 {
  margin-bottom: 0;
}
.steps .eyebrow {
  margin: 0 0 14px;
}
.step-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 36, 61, 0.14);
}
.step-list article:first-child {
  padding-top: 6px;
}
.step-list b {
  color: var(--violet);
  font-size: 12px;
  letter-spacing: 1px;
  padding-top: 4px;
}
.step-list h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
}
.step-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 24px;
  }
}

/* Chat widget */
#webmaister-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}
#chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 14px 30px rgba(81, 53, 232, 0.35);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
#chat-toggle:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(81, 53, 232, 0.4);
}
#chat-toggle svg {
  width: 26px;
  height: 26px;
}
#chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 360px;
  max-width: calc(100vw - 44px);
  height: 500px;
  max-height: 70vh;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(23, 36, 61, 0.24);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#chat-panel[hidden] {
  display: none;
}
.chat-head {
  background: var(--violet);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  flex-shrink: 0;
}
.chat-head button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f8fc;
}
.chat-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.chat-msg--bot {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  background: var(--violet);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing {
  color: var(--muted);
  font-style: italic;
}
#chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
#chat-input {
  flex: 1;
  margin-top: 0;
}
#chat-form button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--violet);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
#chat-form button:hover {
  background: var(--violet-dark);
}
#chat-form button svg {
  width: 18px;
  height: 18px;
}
