:root {
  --bg: #f3f3f1;
  --surface: #ececea;
  --surface-2: #f8f8f6;
  --card: rgba(255, 255, 255, 0.08);
  --text: #111111;
  --heading: #111111;
  --muted: #737373;
  --muted-2: #a8a8a8;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.08);
  --line-light: rgba(255, 255, 255, 0.16);
  --overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.08) 100%);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
  --accent: #111111;
  --success: #1f7a45;
  --error: #b42318;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 22px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
  background: var(--muted-2);
  border-radius: 50px;
  padding: 8px 12px;
}

.section-tag::before {
  content: "•";
  font-size: 1rem;
  line-height: 1;
}

.section-tag-light {
  color: var(--white);
  margin-bottom: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 243, 241, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--bg);
  border-radius: 100px;
}

.brand-mark::before {
  width: 16px;
  height: 5px;
  left: 4px;
  top: 7px;
  transform: rotate(-42deg);
}

.brand-mark::after {
  width: 16px;
  height: 5px;
  right: 2px;
  bottom: 8px;
  transform: rotate(-42deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn {
  padding: 12px 18px;
  background: var(--text);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-secondary {
  padding: 10px 10px 10px 18px;
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  flex-shrink: 0;
}

.btn-ghost .btn-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 760px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 24px 28px;
}

.hero-copy {
  max-width: 620px;
  margin-top: 12px;
}

.hero-title {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 26px;
}

.hero-title .muted-line {
  color: rgba(255, 255, 255, 0.68);
}

.hero-text {
  max-width: 420px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  margin-left: auto;
  width: min(100%, 360px);
  background: rgba(27, 27, 27, 0.38);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.hero-card-thumb {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.hero-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.hero-card-controls {
  display: flex;
  gap: 10px;
}

.circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  padding: 34px 0 8px;
}

.team-mini {
  position: relative;
}

.team-avatars-overlay {
  position: absolute;
  top: -50px;
  left: 0;
  display: flex;
}

.team-avatars-overlay img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-avatars-overlay img:first-child {
  margin-left: 0;
}

.avatars {
  display: flex;
  margin-bottom: 18px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  overflow: hidden;
  margin-left: -14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-mini h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  margin-bottom: 4px;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.team-mini p {
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--muted-2);
  letter-spacing: -0.05em;
  max-width: 320px;
}

.team-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.team-avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-left: -12px;
  transition: transform 0.2s ease;
}

.team-avatars img:first-child {
  margin-left: 0;
}

.team-avatars img:hover {
  transform: translateY(-2px);
}

.about-copy h2,
.product-text h2,
.product-bottom h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-copy .light,
.product-text .light {
  color: var(--muted-2);
}

.about-copy p,
.product-text .lead,
.process-copy p,
.footer-copy p {
  max-width: 580px;
  color: var(--muted);
  font-size: 1rem;
}

.about-copy .btn {
  margin-top: 22px;
  padding: 10px 10px 10px 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.product-card,
.product-image,
.process-banner,
.tech-grid > article,
.footer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card {
  background: linear-gradient(180deg, #efefed 0%, #e9e9e6 100%);
  padding: 28px 26px;
  border: 1px solid rgba(17, 17, 17, 0.04);
}

.product-card .section-tag {
  margin-bottom: 56px;
}

.product-text .lead {
  margin: 14px 0 28px;
  max-width: 480px;
}

.specs {
  border-top: 1px dashed rgba(17, 17, 17, 0.08);
  border-bottom: 1px dashed rgba(17, 17, 17, 0.08);
  padding: 24px 0;
  margin: 18px 0 24px;
}

.specs-title {
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-weight: 500;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 11px 0;
  color: var(--text);
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

.spec-row:last-child {
  border-bottom: none;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-image {
  min-height: 650px;
  position: relative;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border-radius: 24px;
}

.product-image img,
.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-banner {
  position: relative;
  min-height: 650px;
  padding: 24px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}

.process-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.process-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 41, 63, 0.48) 0%,
    rgba(36, 59, 90, 0.22) 100%
  );
  z-index: 1;
}

.process-top,
.process-copy,
.process-progress {
  position: relative;
  z-index: 2;
}

.process-top {
  position: absolute;
  inset: 24px 24px auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
}

.process-number {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.07em;
}

.process-copy {
  margin-left: auto;
  margin-top: auto;
  max-width: 520px;
  color: var(--white);
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.process-copy h3 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 400;
  margin-bottom: 14px;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.process-progress {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.process-bar {
  height: 4px;
  flex: 1;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.process-bar > span {
  display: block;
  height: 100%;
  width: 74%;
  background: var(--white);
  border-radius: inherit;
}

.process-nav {
  display: flex;
  gap: 10px;
}

.process-title {
  color: #ffffff;
}

.process-text {
  color: rgba(255, 255, 255, 0.88);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}

.tech-grid article {
  background: var(--surface-2);
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.tech-grid h3 {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.tech-grid p {
  color: var(--muted);
}

.footer {
  background: #151515;
  color: var(--white);
  margin: 30px 0 24px;
  padding: 36px 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-copy h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 400;
  margin-bottom: 14px;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 22px;
  width: min(100%, 520px);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-links a,
.footer-links p {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  place-items: center;
}

/* Agenda layout */
.agenda-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.agenda-column {
  min-width: 0;
}

.agenda-column .panel {
  height: 100%;
}

.agenda-toolbar {
  margin-bottom: 18px;
}

.search-input {
  width: 100%;
}

.agenda-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

/* Form */
.form-stack {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--heading);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  transition: 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.06);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.full-width {
  width: 100%;
}

.message {
  margin-top: 12px;
  font-weight: 800;
}

.message.success {
  color: var(--success);
}

.message.error {
  color: var(--error);
}

.hidden {
  display: none !important;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.admin-agenda {
  margin-top: 28px;
}

/* Agenda card */
.agenda-item {
  position: relative;
  padding: 22px 22px 20px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.agenda-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  opacity: 0.08;
}

.agenda-item.has-image {
  padding: 0;
  overflow: hidden;
}

.agenda-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.agenda-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 26px 22px;
  position: relative;
}

.agenda-item.has-image .agenda-item-content::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  opacity: 0.08;
}

.agenda-item.has-image::before {
  display: none;
}

.agenda-item h4 {
  margin-bottom: 12px;
  color: var(--heading);
  font-weight: 800;
}

.agenda-item p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.65;
}

/* Agenda meta */
.agenda-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 500;
}

.meta-chip i {
  display: none;
}

.agenda-item.has-image .meta-chip {
  background: var(--surface-2);
}

/* Empty state */
.agenda-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.agenda-empty i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  flex-shrink: 0;
}

.delete-btn {
  margin-top: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.delete-btn:hover {
  background: #ece8e2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* File input */
input[type="file"] {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
}

input[type="file"]::file-selector-button,
input[type="file"]::-webkit-file-upload-button {
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 10px 18px;
  margin-right: 16px;
  cursor: pointer;
}

/* Main nav */
#mainNav {
  display: flex;
}

#mainNav .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

@media (max-width: 1080px) {
  .about-grid,
  .product-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .team-mini {
    padding-top: 0;
  }

  .product-image,
  .process-banner {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .agenda-columns,
  .about-grid,
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .admin-header {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header.open .nav-links {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .header.open .nav-cta {
    display: inline-flex;
    position: absolute;
    left: 38px;
    right: 38px;
    top: 300px;
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-card {
    margin-left: 0;
  }

  #mainNav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    z-index: 100;
  }

  #mainNav.open {
    display: block;
  }

  #mainNav .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .section {
    padding: 16px 0;
  }

  .hero-inner {
    padding: 22px 18px 18px;
  }

  .hero-title,
  .about-copy h2,
  .product-text h2,
  .product-bottom h2,
  .process-copy h3,
  .footer-copy h3 {
    letter-spacing: -0.05em;
  }

  .product-card,
  .tech-grid article,
  .footer {
    padding: 22px 18px;
  }

  .process-top,
  .process-progress {
    left: 18px;
    right: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}


.scroll-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1.5s ease,
    transform 0.7s ease;
  will-change: transform, opacity;
}

.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer mag geen scroll-effect krijgen */
.footer,
.footer * {
  opacity: 1 !important;
  transform: none !important;
}

/* Toegankelijkheid */
@media (prefers-reduced-motion: reduce) {
  .scroll-hidden {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.whatsapp-wrapper {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
}

.whatsapp-button {
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: #25D366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-chat {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.18);
}

.whatsapp-chat.is-open {
  display: flex;
}

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  padding: 14px;
  background: #25D366;
  color: #ffffff;
}

.whatsapp-chat-header-text h3 {
  margin: 0;
  font-size: 16px;
}

.whatsapp-chat-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
}

.whatsapp-chat-close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 16px;
  background: #f6f6f6;
}

.whatsapp-chat-body p {
  margin: 0;
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
}

.whatsapp-chat-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
}

#vve-kerkstraat-chat-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.whatsapp-send-button {
  border: none;
  background: #25D366;
  color: #fff;
  width: 45px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .whatsapp-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-button svg {
    width: 26px;
    height: 26px;
  }
}