/* ============================================================
   Finance Sense Solutions B.V. — Premium Stylesheet v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:          #0D1421;
  --navy:         #071629;
  --navy-mid:     #0E2340;
  --blue:         #1847D8;
  --blue-dark:    #1239B8;
  --blue-light:   #E8EFFE;
  --gold:         #C8902F;
  --gold-bright:  #E5A535;
  --gold-bg:      #FDF6E8;
  --surface:      #F4F6FB;
  --white:        #FFFFFF;
  --border:       #E4E8F2;
  --text-muted:   #64748B;
  --text-medium:  #475569;
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:    0 28px 80px rgba(0,0,0,0.18);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

/* ── Animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Typography helpers ────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-heading .highlight {
  color: var(--blue);
  position: relative;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all 0.28s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold-bright);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(200, 144, 47, 0.35);
}
.btn-primary:hover {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(200, 144, 47, 0.45);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold-bright);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(200, 144, 47, 0.35);
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(200, 144, 47, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.22s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue-light); color: var(--blue); }
.nav-links .nav-cta {
  background: var(--gold-bright);
  color: var(--navy) !important;
  margin-left: 10px;
  padding: 10px 22px;
  box-shadow: 0 3px 12px rgba(200,144,47,0.3);
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-medium);
  padding: 13px 6px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mobile-cta {
  margin-top: 14px;
  background: var(--gold-bright);
  color: var(--navy) !important;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('../Fotos/Achtergrond-hero.jpg') no-repeat center center / cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7, 22, 41, 0.90) 0%,
    rgba(14, 35, 64, 0.80) 40%,
    rgba(24, 71, 216, 0.45) 80%,
    rgba(7, 22, 41, 0.75) 100%
  );
}

/* Subtle animated particles */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape-1 {
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  background: var(--blue);
  animation: float1 12s ease-in-out infinite;
}
.hero-shape-2 {
  width: 280px; height: 280px;
  bottom: 60px; right: 30%;
  background: var(--gold-bright);
  animation: float2 9s ease-in-out infinite;
}
.hero-shape-3 {
  width: 180px; height: 180px;
  top: 30%; left: 10%;
  background: var(--white);
  animation: float1 15s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(20px) scale(0.96); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 99px;
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 28px; height: 28px;
  background: var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-dot svg { width: 14px; height: 14px; color: var(--navy); }

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.38);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.2); }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(24, 71, 216, 0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon-wrap svg { width: 20px; height: 20px; color: var(--gold-bright); }
.trust-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.trust-item-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.50);
}

/* ── SERVICES TEASER ─────────────────────────────────────────── */
.services-teaser {
  padding: 110px 0;
  background: var(--white);
}

.section-header { margin-bottom: 64px; }
.section-header-center { text-align: center; }
.section-header-center .lead { margin-inline: auto; }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.teaser-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.teaser-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.teaser-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.teaser-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease);
}
.teaser-card:hover .teaser-card-img img { transform: scale(1.08); }
.teaser-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,22,41,0.65), transparent 60%);
}

.teaser-card-body {
  padding: 28px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.teaser-card-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.7;
}
.teaser-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.teaser-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.teaser-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.teaser-card a.card-link svg { width: 16px; height: 16px; }
.teaser-card:hover a.card-link { gap: 10px; }

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,71,216,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,144,47,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-card:last-child { border-right: none; }
.stat-icon {
  width: 52px; height: 52px;
  background: rgba(24,71,216,0.22);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.stat-icon svg { width: 24px; height: 24px; color: var(--gold-bright); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold-bright); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── ABOUT SPLIT ────────────────────────────────────────────── */
.about-section {
  padding: 110px 0;
  background: var(--surface);
  overflow: hidden;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img {
  width: 100%; height: 500px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-badge-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.about-badge-float .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--gold-bright);
}
.about-badge-float .small-text {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.3;
}

.about-text { }
.about-text .section-heading { margin-bottom: 22px; }
.about-text > p {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 18px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checklist-icon {
  width: 24px; height: 24px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist-icon svg { width: 12px; height: 12px; color: white; }
.checklist-item span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

/* ── WHY US ─────────────────────────────────────────────────── */
.why-section {
  padding: 110px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.why-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.32s var(--ease);
}
.why-card:hover {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,71,216,0.08), var(--shadow-lg);
  transform: translateY(-3px);
}
.why-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.why-card-icon svg { width: 26px; height: 26px; color: var(--blue); }
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── PROCESS SECTION ────────────────────────────────────────── */
.process-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--blue) 0%, rgba(24,71,216,0.15) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-circle {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  box-shadow: 0 0 0 6px rgba(24,71,216,0.08);
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(24,71,216,0.15), var(--shadow);
}
.process-step h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 8px;
}

/* ── PHOTO STRIP ────────────────────────────────────────────── */
.photo-strip {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.92);
}
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,22,41,0.92) 0%,
    rgba(14,35,64,0.70) 50%,
    rgba(7,22,41,0.50) 100%
  );
  display: flex;
  align-items: center;
}
.photo-strip-content {
  padding: 0 60px;
  max-width: 680px;
}
.photo-strip-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.photo-strip-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,71,216,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .eyebrow { color: var(--gold-bright); }
.cta-section .eyebrow::before { background: var(--gold-bright); }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section > .container > p {
  font-size: 1.07rem;
  color: rgba(255,255,255,0.70);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #050E1D;
  color: var(--white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.social-btn:hover { background: var(--blue); }
.social-btn svg { width: 17px; height: 17px; color: rgba(255,255,255,0.7); }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.22s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-line {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px;
}
.footer-contact-line svg {
  width: 15px; height: 15px;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-line span,
.footer-contact-line a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.60);
  transition: color 0.22s;
  line-height: 1.5;
}
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── PAGE HERO (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, rgba(24,71,216,0.25) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,71,216,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,144,47,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 12px; height: 12px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.18;
}
.page-hero p {
  font-size: 1.07rem;
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}

/* ── DIENSTEN PAGE ──────────────────────────────────────────── */
.services-section { padding: 100px 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.service-card-top {
  height: 6px;
  background: linear-gradient(to right, var(--blue), var(--gold-bright));
}

.service-card-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }

.service-card-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  opacity: 0.65;
}
.service-card h3 {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card > .service-card-body > p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.87rem;
  color: var(--ink);
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* Sectors */
.sectors-section { padding: 100px 0; background: var(--surface); }

.sectors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.sectors-header img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.sector-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.sector-icon {
  width: 50px; height: 50px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sector-icon svg { width: 24px; height: 24px; color: var(--blue); }
.sector-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--blue-light);
}
.sector-card ul { display: flex; flex-direction: column; gap: 9px; }
.sector-card li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.87rem;
  color: var(--text-medium);
}
.sector-card li::before {
  content: '→';
  color: var(--blue);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── OVER ONS PAGE ──────────────────────────────────────────── */
.overons-section { padding: 100px 0; background: var(--white); }

.overons-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.overons-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.overons-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.overons-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 14px;
}
.overons-content ul {
  margin: 14px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.overons-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem;
  color: var(--ink);
}
.overons-content ul li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.overons-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

.stats-widget {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 34px 30px;
}
.stats-widget h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.widget-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.widget-stat:last-child { border-bottom: none; }
.widget-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-bright);
  min-width: 72px;
}
.widget-stat-label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.values-widget {
  background: var(--blue-light);
  padding: 30px 28px;
  border: 1px solid rgba(24,71,216,0.15);
}
.values-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.values-widget ul { display: flex; flex-direction: column; gap: 12px; }
.values-widget li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.values-widget li .check-bullet {
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.values-widget li .check-bullet svg { width: 11px; height: 11px; color: white; }

.contact-widget {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-widget h4 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.contact-widget p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-section { padding: 100px 0; background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-item-label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.contact-item-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-item-value a { transition: color 0.22s; }
.contact-item-value a:hover { color: var(--blue); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 50px 44px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24,71,216,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-note svg { width: 13px; height: 13px; display: inline; vertical-align: middle; }

.form-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
}
.form-success-msg svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Map */
.map-section { padding: 0 0 100px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.map-header {
  background: var(--white);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.map-header-info h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.map-header-info p  { font-size: 0.84rem; color: var(--text-muted); }
.map-header-btns { display: flex; gap: 10px; }
.map-btn {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  border: 1.5px solid var(--border);
  color: var(--text-medium);
  background: var(--white);
}
.map-btn:hover { border-color: var(--gold); color: var(--gold); }
.map-btn.primary {
  background: var(--gold-bright);
  color: var(--navy);
  border-color: var(--gold-bright);
  box-shadow: 0 3px 10px rgba(200,144,47,0.3);
  font-weight: 700;
}
.map-btn.primary:hover { background: var(--gold); }
.map-embed { height: 400px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding: 110px 0;
  background: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.32s var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(24,71,216,0.15);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-light);
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars svg { width: 17px; height: 17px; color: var(--gold-bright); fill: var(--gold-bright); }

.testimonial-text {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.78;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-split { gap: 50px; }
  .overons-layout { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }

  .teaser-grid,
  .services-grid,
  .sectors-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .sectors-header { grid-template-columns: 1fr; }
  .sectors-header img { display: none; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }
  .overons-layout { grid-template-columns: 1fr; }
  .overons-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .teaser-grid,
  .services-grid,
  .why-grid,
  .sectors-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip-content { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-card:last-child { border-bottom: none; }
}
