/* ==========================================================================
   WhiteFish — Clean Light Theme
   ========================================================================== */


/* ==========================================================================
   1. Design tokens
   ========================================================================== */
:root {
  --navy:        #0f2247;
  --navy-mid:    #1a3666;
  --blue:        #1656c8;
  --blue-light:  #e8f0fe;
  --blue-mid:    #3b72f6;
  --accent:      #0ea5e9;
  --bg:          #ffffff;
  --bg-alt:      #f7f9fc;
  --text:        #111827;
  --text-mid:    #374151;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(15,34,71,0.08);
  --shadow-lg:   0 12px 32px rgba(15,34,71,0.11);
}


/* ==========================================================================
   2. Reset + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--blue); }

img { display: block; max-width: 100%; }

ul, ol { list-style: none; }


/* ==========================================================================
   3. Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .5s ease both; }
.anim-2 { animation: fadeUp .5s .08s ease both; }
.anim-3 { animation: fadeUp .5s .16s ease both; }
.anim-4 { animation: fadeUp .5s .24s ease both; }
.anim-5 { animation: fadeUp .5s .32s ease both; }
.anim-6 { animation: fadeUp .5s .40s ease both; }


/* ==========================================================================
   4. Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand / logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 1px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--navy); background: var(--bg-alt); }

/* Header CTA button */
.btn-header {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 0.45rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-header:hover { background: var(--navy-mid); transform: translateY(-1px); }


/* ==========================================================================
   5. Buttons
   ========================================================================== */

/* Primary: white text on navy */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(15,34,71,0.22);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,34,71,0.28);
}
.btn-primary:focus-visible { outline: 3px solid var(--blue-mid); outline-offset: 2px; }

/* White: navy text on white (for use on dark hero) */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.btn-white:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Ghost/outline: for use on dark backgrounds */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 9px;
  border: 1.5px solid rgba(255,255,255,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Outline: navy border on white background */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--bg-alt);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}


/* ==========================================================================
   6. Page hero (shared dark navy section, used on inner pages)
   ========================================================================== */
.page-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4.5rem, 10vw, 7rem);
}

/* Wave at bottom of hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* Decorative radial light on hero */
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,114,246,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.1rem;
}

.hero-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.1rem;
  max-width: 22ch;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero .hero-lead {
  font-size: clamp(0.975rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 1.85rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hero-reassure {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-reassure::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}


/* ==========================================================================
   7. Section scaffolding
   ========================================================================== */
.section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section.alt { background: var(--bg-alt); }

.section.dark {
  background: var(--navy);
}

.section-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.65rem;
}

.section-tag::before {
  content: '';
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.72;
}

.section-header { margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }


/* ==========================================================================
   8. Service cards grid
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.1rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: #c7d8ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ==========================================================================
   9. Process steps
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ==========================================================================
   10. Check list (used in audience / about cards)
   ========================================================================== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%231656c8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}


/* ==========================================================================
   11. Scenario strip
   ========================================================================== */
.scenario-strip {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.scenario {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s;
}

.scenario:hover { border-color: #c7d8ff; }

.scenario-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.scenario p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}


/* ==========================================================================
   12. Package cards
   ========================================================================== */
.packages-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pkg-card {
  background: var(--bg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.pkg-card:hover {
  border-color: #c7d8ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pkg-card.featured {
  border-color: var(--blue);
  background: var(--blue-light);
}

.pkg-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 99px;
  white-space: nowrap;
}

.pkg-duration {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pkg-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.pkg-card > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

.pkg-includes li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pkg-includes li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.pkg-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.pkg-card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Pricing grid (KMO tarieven)
   ========================================================================== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  border-color: #c7d8ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--blue);
  background: var(--blue-light);
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 99px;
  white-space: nowrap;
}

.price-label {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-card > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
  flex: 1;
}

.price-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.price-saving {
  color: var(--text-muted);
  font-size: 0.82rem;
}


/* ==========================================================================
   13. FAQ accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

details.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color 0.2s;
}

details.faq[open] { border-color: #c7d8ff; }

details.faq summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

details.faq[open] summary::after { transform: rotate(45deg); }

details.faq .faq-body {
  padding: 0 1.1rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ==========================================================================
   14. CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,114,246,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 1.5rem;
  max-width: 46ch;
  font-size: 0.975rem;
  line-height: 1.7;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}


/* ==========================================================================
   15. Testimonial (dark bg)
   ========================================================================== */
.testimonial-wrap {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.25rem;
}

.testimonial-wrap blockquote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}


/* ==========================================================================
   16. Contact cards
   ========================================================================== */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
  background: var(--bg);
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: #c7d8ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  display: block;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.55;
}

.contact-card a:hover { color: var(--blue); }


/* ==========================================================================
   17. Form placeholder
   ========================================================================== */
.form-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--bg-alt);
}

.form-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.coming-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid #c7d8ff;
  background: var(--blue-light);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}


/* ==========================================================================
   18. Value cards (wie zijn we)
   ========================================================================== */
.values-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  background: var(--bg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  border-color: #c7d8ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-card h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ==========================================================================
   19. Profile block (wie zijn we)
   ========================================================================== */
.profile-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
}

.profile-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.profile-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.profile-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 0.75rem;
}

.profile-text p:last-child { margin-bottom: 0; }


/* ==========================================================================
   20. Experience block
   ========================================================================== */
.experience-block {
  background: var(--blue-light);
  border: 1px solid #c7d8ff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

.experience-block p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ==========================================================================
   21. Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem);
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.footer-brand-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-copy a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-copy a:hover { color: rgba(255,255,255,0.8); }

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover { color: rgba(255,255,255,0.8); }


/* ==========================================================================
   22. Terms page
   ========================================================================== */
.terms-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 3rem);
}

.terms-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid #c7d8ff;
  background: var(--blue-light);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.terms-box h1 {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.terms-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.terms-box h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-box h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.terms-box p,
.terms-box li {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-muted);
}

.terms-box ul {
  margin: 0.3rem 0 0.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.terms-box ul li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.terms-box ul li::before {
  content: '·';
  color: var(--blue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.terms-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.terms-footer-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}


/* ==========================================================================
   23. Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-img { max-width: 160px; }
}

@media (max-width: 600px) {
  .services-grid,
  .packages-grid,
  .process-steps,
  .scenario-strip,
  .values-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: 1.75rem; }
}
