:root {
  --brown: #4A2C2A;
  /* donkerbruin */
  --gold: #C7A86A;
  /* goud */
  --beige: #F8F3ED;
  /* beige */
  --green: #2F3E34;
  /* donkergroen */
  --text: #2b1d1b;
  --gold-light: rgba(199, 168, 106, 0.1);
  --gold-medium: rgba(199, 168, 106, 0.2);
  --shadow-soft: 0 4px 20px rgba(74, 44, 42, 0.08);
  --shadow-medium: 0 8px 32px rgba(74, 44, 42, 0.12);
  --shadow-strong: 0 16px 48px rgba(74, 44, 42, 0.15);
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden
}

body.bg-beige {
  background: linear-gradient(135deg, var(--beige) 0%, #f5f0e8 100%);
  color: var(--text);
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--gold);
  z-index: 100
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 243, 237, .95);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid rgba(74, 44, 42, .08);
  z-index: 50;
  box-shadow: var(--shadow-soft)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px
}

.brand {
  display: flex;
  align-items: center;
  color: var(--brown);
  transition: transform 0.3s ease
}

.brand:hover {
  transform: translateY(-1px)
}

.logo-image {
  width: 250px;
  height: auto;
  object-fit: contain;
  max-height: 140px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-link {
  color: var(--green);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--brown);
  background: var(--gold-light)
}

.nav-link.active {
  color: var(--brown);
  font-weight: 700;
  background: var(--gold-light)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s
}

.btn:hover::before {
  left: 100%
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b876 100%);
  color: #2b1d1b;
  box-shadow: var(--shadow-soft)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium)
}

.btn-outline {
  border-color: rgba(74, 44, 42, .3);
  color: var(--brown);
  background: rgba(255, 255, 255, 0.7)
}

.btn-outline:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(74, 44, 42, .3);
  border-radius: 10px;
  padding: 11px 10px;
  color: var(--brown);
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  margin-right: 16px
}

.hamburger:hover {
  background: var(--gold-light)
}

.nav-links.show {
  display: flex
}

/* Sections */
.section {
  padding: 80px 0;
  border-top: 1px solid rgba(74, 44, 42, .06)
}

.section.alt {
  background: transparent;
  position: relative
}

.section.alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.lead,
.sub {
  color: #5b4b48;
  font-size: 18px;
  line-height: 1.7
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 100px 0;
  position: relative
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, var(--gold-light) 0%, transparent 50%);
  pointer-events: none
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--brown);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--gold-medium)
}

.hero h1 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 24px
}

.hero .hero-media {
  border-radius: 20px;
  min-height: 320px;
  background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
  border: 1px solid rgba(74, 44, 42, .08);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden
}

.hero .hero-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 44, 42, 0.1) 0%, transparent 50%);
  pointer-events: none
}

.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 32px
}

.cards {
  display: grid;
  gap: 24px
}

.cards.two {
  grid-template-columns: 1fr 1fr
}

.cards.three {
  grid-template-columns: 1fr 1fr 1fr
}

.cards.four {
  grid-template-columns: 1fr 1fr 1fr 1fr
}

.section-header {
  text-align: center;
  margin-bottom: 60px
}

.section-header h2 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 40px;
  margin: 0 0 20px
}

.card {
  background: #fff;
  border: 1px solid rgba(74, 44, 42, .08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  word-break: break-word;
  overflow-wrap: anywhere
}

/* Machine Cards */
.machine-card {
  padding: 0;
  overflow: hidden
}

.machine-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease
}

.machine-card:hover .machine-image img {
  transform: scale(1.05)
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.card-content h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown)
}

.card-content p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #5b4b48;
  line-height: 1.6
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #d4b876);
  transform: scaleX(0);
  transition: transform 0.3s ease
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-medium)
}

.card:hover::before {
  transform: scaleX(1)
}

.card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block
}

.card h3 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 16px;
  font-size: 20px
}

.card p {
  color: #5b4b48;
  margin: 0 0 20px;
  line-height: 1.6;
  flex-grow: 1
}

.card .link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto
}

.card .link:hover {
  color: var(--brown)
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brown);
  background: linear-gradient(135deg, #fff 0%, #fefcf9 100%);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  font-size: 18px;
  line-height: 1.6
}

.quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px
}

.benefit-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(74, 44, 42, .12);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  word-break: break-word;
  overflow-wrap: anywhere
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #d4b876);
  transform: scaleX(0);
  transition: transform 0.3s ease
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-medium)
}

.benefit-card:hover::before {
  transform: scaleX(1)
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.2)
}

.benefit-card h3 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 12px;
  font-size: 18px
}

.benefit-card p {
  color: #5b4b48;
  margin: 0;
  line-height: 1.5;
  font-size: 15px
}

.quote-section {
  margin-top: 40px;
  display: flex;
  justify-content: center
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brown);
  background: linear-gradient(135deg, #fff 0%, #fefcf9 100%);
  border-left: 4px solid var(--gold);
  padding: 32px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  position: relative;
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  text-align: center
}

.quote::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 30px;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.4;
  font-family: 'Playfair Display', serif
}

/* Page blocks */
.page-hero {
  padding: 80px 0 40px;
  text-align: center;
  position: relative
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #d4b876);
  border-radius: 2px
}

.page-hero h1 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 48px;
  margin: 0 0 24px;
  line-height: 1.2
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

/* Premium Form Styling */
.form-section {
  margin-bottom: 40px
}

.form-header {
  margin-bottom: 32px
}

.form-header h2 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 28px;
  margin: 0 0 12px
}

.form-subtitle {
  color: #5b4b48;
  font-size: 16px;
  line-height: 1.6;
  margin: 0
}

.premium-form {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(74, 44, 42, .08);
  position: relative
}

/* Alerts */
.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb
}

.premium-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #d4b876);
  border-radius: 24px 24px 0 0
}

.form-group {
  margin-bottom: 24px
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--brown);
  font-size: 14px
}

.required {
  color: var(--gold);
  font-weight: bold
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center
}

.input-icon {
  position: absolute;
  left: 16px;
  font-size: 18px;
  z-index: 2;
  color: var(--gold)
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: 12px;
  border: 2px solid rgba(74, 44, 42, .12);
  background: #fefcf9;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: inherit
}

.premium-form input:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-light);
  background: #fff;
  transform: translateY(-1px)
}

.premium-form textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 16px
}

.form-footer {
  margin-top: 32px;
  text-align: center
}

.btn-large {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease
}

.btn-large:hover .btn-icon {
  transform: translateX(4px)
}

.form-note {
  color: #5b4b48;
  font-size: 16px;
  margin: 16px 0 0;
  font-weight: 600;
  text-align: center
}

/* Contact Section */
.contact-section {
  margin-top: 20px
}

.contact-header {
  margin-bottom: 32px
}

.contact-header h2 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 28px;
  margin: 0 0 12px
}

.contact-subtitle {
  color: #5b4b48;
  font-size: 16px;
  line-height: 1.6;
  margin: 0
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(74, 44, 42, .08);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-medium)
}

.contact-card-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border-radius: 10px;
  flex-shrink: 0
}

.contact-card-content h3 {
  font-family: 'Poppins', system-ui;
  font-weight: 600;
  color: var(--brown);
  font-size: 16px;
  margin: 0 0 4px
}

.contact-card-content p,
.contact-card-content a {
  color: #5b4b48;
  text-decoration: none;
  margin: 0;
  font-size: 15px
}

.contact-card-content a:hover {
  color: var(--gold)
}

.whatsapp-section {
  text-align: center
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft)
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium)
}

.whatsapp-icon {
  font-size: 20px
}

/* Footer */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(74, 44, 42, .08);
  background: linear-gradient(135deg, #fff 0%, #fefcf9 100%);
  position: relative
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer-logo {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 24px;
  margin-bottom: 8px
}

.footer-slogan {
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px
}

.footer-mission p {
  color: #5b4b48;
  line-height: 1.6;
  margin: 0;
  font-size: 15px
}

.footer-center h4,
.footer-right h4 {
  font-family: 'Poppins', system-ui;
  font-weight: 700;
  color: var(--brown);
  font-size: 16px;
  margin: 0 0 20px
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-links li {
  margin: 12px 0
}

.footer-links a {
  color: #5b4b48;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease
}

.footer-links a:hover {
  color: var(--brown);
  padding-left: 12px
}

.footer-links a:hover::before {
  width: 8px
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #5b4b48
}

.contact-icon {
  font-size: 16px;
  width: 20px;
  text-align: center
}

.contact-item a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.3s ease
}

.contact-item a:hover {
  color: var(--gold)
}

.footer-cta {
  margin-top: 20px
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px
}

.footer-bottom {
  background: linear-gradient(135deg, var(--brown) 0%, #3a2523 100%);
  color: #f5f0e8;
  position: relative
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0
}

.copyright {
  color: #d4c4b8;
  font-size: 14px
}

.footer-badges {
  display: flex;
  gap: 12px
}

.badge {
  background: rgba(199, 168, 106, 0.15);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(199, 168, 106, 0.3)
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b876 100%);
  color: #2b1d1b;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(74, 44, 42, .1);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  font-size: 24px;
  z-index: 999
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-strong)
}

/* Responsive */
@media(max-width:980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 80px 0
  }

  .hero h1 {
    font-size: 48px
  }

  .cards.two {
    grid-template-columns: 1fr
  }

  .cards.three {
    grid-template-columns: 1fr 1fr
  }

  .cards.four {
    grid-template-columns: 1fr 1fr
  }

  .page-hero h1 {
    font-size: 40px
  }

  .section-header h2 {
    font-size: 36px
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: 8px
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .premium-form {
    padding: 32px
  }

  .form-header h2,
  .contact-header h2 {
    font-size: 24px
  }
}

@media(max-width:768px) {
  .cards.three {
    grid-template-columns: 1fr
  }

  .cards.two {
    grid-template-columns: 1fr
  }

  .cards.four {
    grid-template-columns: 1fr
  }

  .benefits-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 44px
  }

  .section-header h2 {
    font-size: 32px
  }

  .card {
    padding: 20px
  }

  .machine-image {
    height: 180px
  }

  .card-content {
    padding: 20px
  }
}

@media(max-width:930px) {
  .container {
    padding: 0 16px
  }

  .nav {
    height: 150px
  }

  .logo-image {
    width: 200px;
    height: auto;
    max-height: 150px
  }

  .hamburger {
    display: inline-flex
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 130px;
    background: rgba(248, 243, 237, .98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 44, 42, .08);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-soft);
    z-index: 100
  }

  .nav-links .nav-link,
  .nav-links .btn {
    width: 100%;
    margin: 4px 0;
    box-sizing: border-box
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px
  }

  .grid-2,
  .grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .hero {
    padding: 60px 0;
    gap: 24px
  }

  .hero h1 {
    font-size: 40px
  }

  .hero .hero-media {
    min-height: 240px
  }

  .section {
    padding: 60px 0
  }

  .page-hero {
    padding: 60px 0 30px
  }

  .page-hero h1 {
    font-size: 32px
  }

  .section-header h2 {
    font-size: 28px
  }

  .form {
    padding: 24px
  }

  .cta-row {
    flex-direction: column;
    gap: 12px
  }

  .btn {
    padding: 12px 20px
  }

  .whatsapp {
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    font-size: 18px
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0
  }

  .footer-bottom .footnote {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .footer-badges {
    justify-content: center
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px
  }

  .benefit-card {
    padding: 20px
  }

  .quote {
    padding: 24px 28px;
    font-size: 18px
  }

  .premium-form {
    padding: 24px
  }

  .form-header h2,
  .contact-header h2 {
    font-size: 22px
  }

  .premium-form input,
  .premium-form textarea {
    padding: 14px
  }

  .input-icon {
    left: 14px;
    font-size: 16px
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 15px
  }

  .contact-card {
    padding: 16px
  }

  .contact-card-icon {
    width: 36px;
    height: 36px;
    font-size: 20px
  }

  /* Mobile card improvements */
  .cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100%
  }

  .cards.two {
    grid-template-columns: 1fr !important
  }

  .cards.three {
    grid-template-columns: 1fr !important
  }

  .cards.four {
    grid-template-columns: 1fr !important
  }

  .card {
    padding: 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box
  }

  .machine-image {
    height: 350px
  }

  .card-content {
    padding: 16px
  }

  .machine-card {
    min-height: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column
  }

  .machine-card .card-content h3 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px
  }

  .machine-card .card-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0
  }

  .card-icon {
    font-size: 28px;
    margin-bottom: 12px
  }

  .card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    word-break: break-word
  }

  .card p {
    font-size: 15px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere
  }

  .section-header {
    margin-bottom: 40px
  }

  .section-header h2 {
    font-size: 26px;
    margin-bottom: 16px;
    word-break: break-word
  }

  .section-header .sub {
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: anywhere
  }

  /* Force single column for all card layouts on mobile */
  .container .cards {
    display: flex !important;
    flex-direction: column !important;
    width: 100%
  }

  .container .cards .card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box
  }

  .benefit-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere
  }
}

/* --- Hard-fix: gegarandeerd lucht aan de zijkant op mobiel --- */
@media (max-width: 930px) {
  .container, .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 500px) {
  .container, .section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


