/* ==========================================================================
   Zarino — stylesheet
   Groen/oranje palet geïnspireerd op de IT Bear mascotte.
   Kleuren/branding aanpassen? Wijzig gewoon de variabelen hieronder.
   ========================================================================== */

:root {
  --color-primary: #3d8a72;
  --color-primary-dark: #2c6b57;
  --color-primary-light: #6bb89f;
  --color-accent: #f7941d;
  --color-accent-dark: #dd7c08;
  --color-text: #1f2430;
  --color-text-muted: #5b6472;
  --color-bg: #ffffff;
  --color-bg-alt: #eff8f4;
  --color-border: #dcece5;
  --color-success: #3d8a72;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(14, 107, 69, 0.1);
  --shadow-lg: 0 12px 32px rgba(14, 107, 69, 0.16);
  --max-width: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6em 0;
  font-weight: 700;
  color: #0f172a;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; }

/* Header / Nav ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.brand span { color: var(--color-accent); }
.brand-icon { width: 34px; height: 34px; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.2s;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { position: relative; }
.nav-link {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
}
.nav-link:hover { background: var(--color-bg-alt); text-decoration: none; color: var(--color-primary); }
.nav-link.is-active { color: var(--color-primary); }

.has-dropdown > .nav-link::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7em;
}
.dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.15s ease;
}
.has-dropdown.is-open .dropdown,
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown a:hover { background: var(--color-bg-alt); text-decoration: none; color: var(--color-primary); }
.nav-cta { margin-left: 8px; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-left: 6px;
}
.lang-toggle:hover { background: var(--color-bg-alt); text-decoration: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 12px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    padding-left: 12px;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
}

/* Hero --------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 96px 0 80px;
}
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.85); }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .lead { color: rgba(255,255,255,0.85); }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* Cards / grids -------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card a.card-link { font-weight: 600; font-size: 0.92rem; }

/* Pricing ------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card.is-highlight {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  position: relative;
}
.price-card.is-highlight::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
/* Price display — used both inside .price-card and plain .card sidebars.
   Both numbers in a range keep the same font size/weight/color, only the
   "vanaf/tot" wrapper text (if any) is set with .price-note below. */
.price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 10px 0 4px;
}
.price small {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
}
.price-card .price { font-size: 2.1rem; font-weight: 800; color: var(--color-primary); margin: 10px 0 4px; }
.price-note { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); margin: -4px 0 4px; }
.price-card ul { list-style: none; padding: 0; margin: 20px 0; flex-grow: 1; }
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--color-border);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-success);
  font-weight: 700;
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.price-table th, table.price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
table.price-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
table.price-table tbody tr:last-child td { border-bottom: none; }
table.price-table tbody tr:nth-child(even) { background: var(--color-bg-alt); }
.table-scroll { overflow-x: auto; }

/* Forms ---------------------------------------------------------------------- */
.form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.form-row .hint { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 4px; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.96rem;
  background: #fff;
  color: var(--color-text);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12);
}
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-group label, .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}
.radio-group input, .checkbox-group input { accent-color: var(--color-primary); }
.form-note { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 14px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* CTA banner ------------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* Footer ------------------------------------------------------------------------ */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Utilities ---------------------------------------------------------------------- */
.badge {
  display: inline-block;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.divider { height: 1px; background: var(--color-border); margin: 40px 0; border: none; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 18px 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.faq-item p { color: var(--color-text-muted); margin: 0; }
.step-list { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 24px 46px;
  border-left: 2px solid var(--color-border);
  margin-left: 18px;
}
.step-list li:last-child { border-color: transparent; padding-bottom: 0; }
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: -19px;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.success-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* WhatsApp floating button ------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  text-decoration: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

/* Mascot ------------------------------------------------------------------- */
.mascot-hero {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}
.mascot-inline { width: 120px; height: auto; }
@media (max-width: 760px) {
  .mascot-hero { width: 160px; }
}
