:root {
  --primary: #003366;
  --accent: #00b894;
  --bg-light: #f8f9fb;
  --bg-alt: #ffffff;
  --text-main: #222;
  --text-light: #fff;
  --spacing-lg: 80px;
  --spacing-md: 60px;
  --spacing-sm: 20px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-alt);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Global Typography */
h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto var(--spacing-sm);
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn--primary,
button,
.cta-button,
.contact-button,
.contactformulier,
#contactformulier,
input[type="submit"] {
  background-color: var(--accent);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  line-height: normal;
}

.btn--primary:hover,
button:hover,
.cta-button:hover,
.contact-button:hover,
.contactformulier:hover,
#contactformulier:hover,
input[type="submit"]:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Sections */
.hero-with-bg,
.hero-clean {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 80px;
  text-align: center;
  color: var(--text-light);
  background: url('assets/hero-bg.jpg') no-repeat center center;
  background-size: cover;
}

.hero-with-bg::before,
.hero-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 77, 0.8);
}

.hero-with-bg .overlay,
.hero-clean .overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-with-bg .logo {
  max-width: 180px;
  width: 100%;
  margin-bottom: 10px;
}

.hero-with-bg h1,
.hero-clean h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-with-bg p,
.hero-clean p {
  font-size: 1.25rem;
  margin: 0;
}

/* Layout Sections */
section,
.intro,
.tools-preview,
.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) 20px;
  text-align: center;
}

.intro {
  background-color: var(--bg-light);
  border-bottom: 1px solid #e0e0e0;
}

.usp-block {
  background-color: var(--bg-light);
  padding: var(--spacing-md) 20px;
  text-align: center;
}

.usp-block h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.usp-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  max-width: 300px;
  flex: 1 1 260px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.usp-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.highlight-numbers {
  position: relative;
  background-color: var(--primary);
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.highlight-numbers {
  background-color: var(--primary);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.highlight-stats {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.stat-item {
  flex: 1 1 200px;
  min-width: 180px;
}

.stat-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #cce6ff;
  letter-spacing: 0.5px;
}

.stat-item p {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--accent);
}

.cta-scan {
  background-color: #e6f4ff;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #d0e4f2;
  border-bottom: 1px solid #d0e4f2;
}

.cta-scan h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003366;
}

.cta-scan p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333;
}

.cta-scan .btn {
  background-color: var(--accent);
  color: #fff;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-scan .btn:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}


.tools-preview {
  background-color: var(--bg-alt);
}

.contact-wrapper {
  background-color: #e6f4ff;
  border-top: 1px solid #e6f4ff;
}

/* Uniform contact buttons */
.contact-wrapper a,
.contact-wrapper button,
.contact-wrapper input[type="submit"] {
  height: 46px;
  padding: 0 28px;
  font-size: 1rem;
  margin-bottom: 2%;
}

/* Tool Grid */
.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tool-card {
  position: relative;
  background: var(--bg-alt);
  padding: 28px;
  flex: 1;
  min-width: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 4px solid var(--accent);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tool-card .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  fill: var(--accent);
}

.tool-card h3 {
  margin-top: 0;
}

/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: var(--bg-alt);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

/* Forms */
input,
textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.footer p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer .social-icons img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer .social-icons img:hover {
  opacity: 1;
}

.footer.extended {
  background-color: var(--primary);
  color: var(--text-light);
}

.footer.extended a {
  color: var(--text-light);
  text-decoration: none;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  text-align: left;
}

.footer-col h5 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.footer-col a {
  color: #007bff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  padding: 20px 0;
  background-color: #001f4d;
  color: #ccc;
}

/* Additional CSS */

ul.check {
  list-style: none;
  padding: 0;
  max-width: 600px;           /* beperkt de breedte voor balans */
  text-align: left;           /* tekst links, maar blok zelf gecentreerd */
}

ul.check li {
  position: relative;
  padding-left: 32px;         /* ruimte voor het vinkje */
  margin: 8px 0;
  line-height: 1.7;
  font-size: 1.2rem;
}

ul.check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71;             /* OnBizz-groen */
  font-weight: 400;
  font-size: 2rem;
  width: 24px;
  text-align: center;
}

/* Optioneel: centreer het hele blok binnen de intro-sectie */
.intro .check {
  display: inline-block;
  text-align: left;
}
.intro {
  text-align: center;         /* centreert de lijst binnen de sectie */
}

p.highlight-fix {
color: #FFF;
font-size: 1rem !important;
}

.spacer {
    margin-top: 5%;
}



