:root {
  --navy: #00164f;
  --navy-light: #0a2a6a;
  --navy-mid: #0B3C84;
  --blue: #034da2;
  --blue-light: #0a5cb8;
  --blue-on-dark: #5ba3e6;
  --blue-dark: #02407e;
  --cream: #f4f6fa;
  --cream-dark: #e6eaf2;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #e4e7ed;
  --gray-300: #cdd2db;
  --gray-500: #636b7f;
  --gray-700: #353b4a;
  --gray-900: #1a1d26;
  --success: #2d8a5e;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15,27,45,0.06);
  --shadow-md: 0 4px 20px rgba(15,27,45,0.08);
  --shadow-lg: 0 12px 40px rgba(15,27,45,0.12);
  --shadow-xl: 0 24px 60px rgba(15,27,45,0.16);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(0,22,79,0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 2px 20px rgba(0,22,79,0.08);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 84px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}

.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 18px; color: var(--white);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; letter-spacing: 0.5px; color: var(--navy); }
.logo-text span { color: var(--blue); }

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

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(0,22,79,0.7); text-decoration: none; font-size: 14px;
  font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue); transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white) !important; padding: 10px 24px;
  border-radius: 6px; font-weight: 600 !important;
  letter-spacing: 0.3px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(3,77,162,0.3); }


/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute; top: 44px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue));
  opacity: 0.2;
}

.process-step {
  text-align: center; position: relative;
}

.process-number {
  width: 88px; height: 88px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 2px solid rgba(91,163,230,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}

.process-number i {
  font-size: 28px; color: var(--blue-on-dark);
}

.process-step-label {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.process-step h3 {
  font-size: 20px; margin-bottom: 8px;
}

.process-step p {
  font-size: 14px; color: var(--gray-500);
}

.process-note {
  text-align: center; margin-top: 48px;
  padding: 20px 32px;
  background: rgba(91,163,230,0.05);
  border: 1px solid rgba(91,163,230,0.1);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray-700);
}
.process-note i { color: var(--blue); font-size: 18px; }

/* ─── LEAD MAGNET ─── */
.lead-magnet {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.lead-magnet-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 2;
}

.lead-magnet-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.lead-magnet-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: rgba(91,163,230,0.15);
  border: 2px solid rgba(91,163,230,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--blue-on-dark);
}

.lead-magnet-preview {
  list-style: none; text-align: left;
}
.lead-magnet-preview li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  font-size: 14px; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lead-magnet-preview li:last-child { border-bottom: none; }
.lead-magnet-preview li i { color: var(--blue-on-dark); font-size: 12px; width: 16px; }

.lead-magnet-content h2 { font-size: clamp(28px, 3vw, 40px); color: var(--white); margin-bottom: 16px; }
.lead-magnet-content > p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 32px; }

.lead-magnet-form {
  display: flex; gap: 12px;
}
.lead-magnet-form input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--white);
  outline: none; transition: var(--transition);
}
.lead-magnet-form input::placeholder { color: rgba(255,255,255,0.3); }
.lead-magnet-form input:focus { border-color: var(--blue-on-dark); background: rgba(255,255,255,0.08); }

.lead-magnet-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.lead-magnet-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(91,163,230,0.4); }

.lead-magnet-privacy { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 12px; }

/* ─── GOOGLE REVIEWS ─── */
.google-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.google-badge img, .google-g {
  font-size: 24px; font-weight: 700;
}
.google-g span { font-size: 24px; font-weight: 700; }
.google-g .g-blue { color: #4285F4; }
.google-g .g-red { color: #EA4335; }
.google-g .g-yellow { color: #FBBC05; }
.google-g .g-green { color: #34A853; }
.google-badge-info { font-size: 14px; color: var(--gray-700); }
.google-badge-info strong { font-size: 18px; color: var(--gray-900); }
.google-badge-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }


.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--navy);
  position: absolute; left: 0; transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(36,59,92,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(3,77,162,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(26,45,71,0.8) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent {
  position: absolute;
  width: 500px; height: 500px;
  border: 1px solid rgba(3,77,162,0.1);
  border-radius: 50%;
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-accent::before {
  content: ''; position: absolute;
  width: 350px; height: 350px;
  border: 1px solid rgba(3,77,162,0.08);
  border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,163,230,0.08);
  border: 1px solid rgba(91,163,230,0.25);
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--blue-on-dark);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge i { font-size: 11px; }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .accent { color: var(--blue-on-dark); font-style: italic; }

.hero p {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 540px; margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: var(--transition); border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(3,77,162,0.35); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item h3 { font-size: 36px; color: var(--white); font-weight: 700; }
.stat-item p { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-number { display: block; font-size: 36px; color: var(--white); font-weight: 700; font-family: var(--font-heading, 'Playfair Display', serif); }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: transparent;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.trust-bar .trust-inner {
  display: flex; align-items: center; justify-content: space-evenly;
  gap: 0;
  max-width: 1200px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,22,79,0.1), 0 1px 3px rgba(0,22,79,0.06);
  padding: 24px 32px;
  margin-top: -34px;
  position: relative;
  border: 1px solid var(--gray-200);
  flex-wrap: nowrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  flex: 1; justify-content: center;
  padding: 0 8px;
}
.trust-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 15px;
}
.trust-text {
  display: flex; flex-direction: column;
}
.trust-text strong {
  font-size: 13px; font-weight: 700; color: var(--navy);
  line-height: 1.2; white-space: nowrap;
}
.trust-text span {
  font-size: 11px; color: var(--gray-500); margin-top: 2px; white-space: nowrap;
}
.trust-divider {
  width: 1px; height: 32px; background: var(--gray-200); flex-shrink: 0;
}

/* ─── SECTIONS COMMON ─── */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
}
.section-header .overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header .overline::before,
.section-header .overline::after {
  content: ''; width: 24px; height: 1px; background: var(--blue);
}
.section-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray-500); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* Dark section overrides — better contrast for blue elements */
.video-section .section-header .overline,
.consult-section .section-header .overline,
.cta-band .overline { color: var(--blue-on-dark); }
.video-section .section-header .overline::before,
.video-section .section-header .overline::after,
.consult-section .section-header .overline::before,
.consult-section .section-header .overline::after { background: var(--blue-on-dark); }
.video-section .section-header p { color: rgba(255,255,255,0.6); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px; color: var(--white);
}

.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: 15px; }

.service-tag {
  display: inline-block; margin-top: 16px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(3,77,162,0.12);
  border: 1px solid rgba(3,77,162,0.2);
  font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: rgba(255,255,255,0.3);
}
.about-image-placeholder i { font-size: 48px; }
.about-image-placeholder span { font-size: 14px; font-weight: 500; }

.about-image::after {
  content: ''; position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--blue);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-content h2 { font-size: clamp(32px, 3.5vw, 44px); margin-bottom: 20px; }
.about-content > p { color: var(--gray-500); font-size: 16px; margin-bottom: 16px; }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex; align-items: flex-start; gap: 12px;
}

.value-check {
  width: 24px; height: 24px; min-width: 24px;
  background: rgba(91,163,230,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.value-check i { font-size: 10px; color: var(--blue); }

.value-item span { font-size: 14px; font-weight: 500; color: var(--gray-700); }

/* ─── INVESTMENT CONSULT ─── */
.consult-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.consult-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(3,77,162,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(36,59,92,0.5) 0%, transparent 50%);
}

.consult-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.consult-content h2 { font-size: clamp(32px, 3.5vw, 44px); color: var(--white); margin-bottom: 20px; }
.consult-content > p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 32px; }

.consult-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.consult-feature {
  display: flex; align-items: flex-start; gap: 16px;
}

.consult-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(91,163,230,0.08);
  border: 1px solid rgba(91,163,230,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-on-dark); font-size: 16px;
}

.consult-feature h4 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.consult-feature p { font-size: 14px; color: rgba(255,255,255,0.5); }

.consult-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.consult-price {
  margin-bottom: 32px;
}
.consult-price .label { font-size: 14px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.consult-price .amount { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--blue-on-dark); }
.consult-price .amount sup { font-size: 24px; top: -20px; }
.consult-price .period { font-size: 14px; color: rgba(255,255,255,0.4); }

.consult-includes { text-align: left; margin-bottom: 32px; }
.consult-includes h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }

.consult-includes ul { list-style: none; }
.consult-includes li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.consult-includes li:last-child { border-bottom: none; }
.consult-includes li i {
  width: 24px; height: 24px; min-width: 24px;
  background: rgba(91,163,230,0.3);
  border: 1.5px solid rgba(91,163,230,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #5ba3e6; font-size: 10px;
}

.btn-accent {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; border: none;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(3,77,162,0.35); }

/* ─── CALENDLY SECTION ─── */
.booking-section { background: var(--gray-100); }

.booking-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}

.booking-info h2, .booking-info h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 16px; }
.booking-info > p { color: var(--gray-500); font-size: 16px; margin-bottom: 32px; }

.booking-types { display: flex; flex-direction: column; gap: 16px; }

.booking-type {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.booking-type:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.booking-type-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(3,77,162,0.08);
  border: 1px solid rgba(3,77,162,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px;
}

.booking-type h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.booking-type p { font-size: 13px; color: var(--gray-500); }
.booking-type .duration { font-size: 12px; color: var(--blue-dark); font-weight: 600; margin-top: 4px; }

.calendly-embed {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  min-height: 700px;
  box-shadow: var(--shadow-md);
}
.calendly-embed .calendly-inline-widget,
.calendly-embed iframe {
  width: 100% !important;
  height: 700px !important;
  min-height: 700px !important;
}

.calendly-placeholder {
  text-align: center; padding: 60px 40px; color: var(--gray-500);
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 500px;
}
.calendly-placeholder i { font-size: 48px; color: var(--gray-300); margin-bottom: 16px; }
.calendly-placeholder h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; color: var(--gray-700); margin-bottom: 8px; }
.calendly-placeholder p { font-size: 14px; max-width: 300px; margin: 0 auto 24px; }
.calendly-placeholder code {
  display: block; background: var(--gray-100); padding: 12px 20px;
  border-radius: 6px; font-size: 13px; color: var(--gray-700);
  margin-top: 16px;
}

/* ─── BLOG ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-thumb-icon {
  font-size: 32px; color: rgba(91,163,230,0.3);
}

.blog-category {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(91,163,230,0.2);
  border: 1px solid rgba(91,163,230,0.3);
  font-size: 11px; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.5px;
}

.blog-body { padding: 28px; }
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--gray-500); margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 {
  font-size: 20px; margin-bottom: 10px;
  transition: var(--transition);
}
.blog-card:hover .blog-body h3 { color: var(--blue-dark); }
.blog-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }

.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue-dark);
  text-decoration: none; transition: var(--transition);
}
.blog-link:hover { gap: 10px; }

.blog-cta {
  text-align: center; margin-top: 48px;
}

/* ─── VIDEO / REELS ─── */
.video-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.video-section .section-header h2 { color: var(--white); }

.video-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy-light));
  cursor: pointer;
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); }

.video-card-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 24px;
  text-align: center;
}

.video-play-btn {
  width: 56px; height: 56px;
  background: rgba(3,77,162,0.15);
  border: 2px solid rgba(3,77,162,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.video-play-btn i { color: var(--blue-on-dark); font-size: 18px; margin-left: 3px; }
.video-card:hover .video-play-btn { background: rgba(3,77,162,0.25); transform: scale(1.1); }

.video-card-title { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }

.video-card-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(3,77,162,0.15);
  border: 1px solid rgba(91,163,230,0.25);
  font-size: 11px; font-weight: 600; color: var(--blue-on-dark);
}

.video-cta {
  text-align: center; margin-top: 48px;
}
.video-cta p { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 20px; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--navy);
  position: relative;
}

.newsletter-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark), var(--blue));
}

.newsletter-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(3,77,162,0.1), rgba(3,77,162,0.05));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--blue);
}

.newsletter-card h2 { font-size: 32px; margin-bottom: 12px; }
.newsletter-card > p { color: var(--gray-500); font-size: 16px; margin-bottom: 32px; }

.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
}

.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--gray-900);
  transition: var(--transition);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray-300); }
.newsletter-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(3,77,162,0.1); }

.newsletter-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.newsletter-privacy {
  font-size: 13px; color: var(--gray-500); margin-top: 16px;
}
.newsletter-privacy i { margin-right: 4px; }

.newsletter-success {
  display: none;
  padding: 16px 24px;
  background: rgba(45,138,94,0.08);
  border: 1px solid rgba(45,138,94,0.2);
  border-radius: 8px;
  color: var(--success);
  font-weight: 500;
  margin-top: 16px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  justify-items: center;
}
.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
  max-width: 100%;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 16px;
  color: var(--blue); font-size: 14px;
}

.testimonial-card blockquote {
  font-size: 15px; color: var(--gray-700);
  font-style: italic; line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-on-dark); font-size: 16px; font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.testimonial-author-info h4 {
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
}
.testimonial-author-info p { font-size: 13px; color: var(--gray-500); }

/* ─── FAQ ─── */
.faq-container { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%; padding: 24px 0;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--blue-dark); }

.faq-question i {
  font-size: 14px; color: var(--blue);
  transition: var(--transition);
  min-width: 20px; text-align: center;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px; color: var(--gray-500); line-height: 1.7;
}

/* ─── CONTACT / CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(3,77,162,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(3,77,162,0.04) 0%, transparent 50%);
}

.cta-band h2 { font-size: clamp(28px, 3.5vw, 42px); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .hero-buttons { justify-content: center; position: relative; }

/* ─── FOOTER ─── */
.footer {
  background: var(--white);
  padding: 64px 0 0;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { color: var(--gray-500); font-size: 14px; max-width: 280px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
}
.footer-socials a:hover { transform: translateY(-2px); opacity: 0.85; }
.footer-socials a[aria-label="LinkedIn"] { background: #0A66C2; }
.footer-socials a[aria-label="Instagram"] { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-socials a[aria-label="Facebook"] { background: #1877F2; }
.footer-socials a[aria-label="YouTube"] { background: #FF0000; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--blue); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 14px; color: var(--gray-500);
}
.footer-contact-item i { color: var(--blue); margin-top: 3px; width: 16px; }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--gray-400);
}

.footer-bottom a { color: var(--gray-400); text-decoration: none; }
.footer-bottom a:hover { color: var(--blue); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.cookie-banner strong { color: var(--gray-900); }
.cookie-buttons { display: flex; gap: 8px; }
.cookie-btn {
  padding: 10px 20px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--transition);
}
.cookie-accept { background: var(--navy); color: var(--white); }
.cookie-accept:hover { background: var(--navy-light); }
.cookie-decline { background: var(--gray-100); color: var(--gray-700); }
.cookie-decline:hover { background: var(--gray-200); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--navy);
  border: 1px solid rgba(3,77,162,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
  position: fixed; bottom: 32px; right: 96px;
  width: 48px; height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  transition: var(--transition);
  z-index: 999;
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.05); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .consult-grid { gap: 48px; }
  .booking-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .lead-magnet-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid rgba(0,22,79,0.1);
    box-shadow: 0 8px 30px rgba(0,22,79,0.08);
    gap: 16px;
  }
  .nav-links.open a { color: var(--navy) !important; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 400px; }
  .consult-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-card { padding: 40px 24px; }
  .consult-card { padding: 36px 24px; }
  .about-values { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lead-magnet-grid { grid-template-columns: 1fr; }
  .lead-magnet-form { flex-direction: column; }
}

/* ─── SECTION DARK UTILITY ─── */
.section-dark {
  background: var(--navy);
}
.section-dark .section-header h2,
.section-dark .section-header p,
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-header .overline { color: var(--blue-on-dark); }
.section-dark .section-header .overline::before,
.section-dark .section-header .overline::after { background: var(--blue-on-dark); }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ─── OVER ONS DARK ─── */
.section-dark .about-content p { color: rgba(255,255,255,0.7); }
.section-dark .about-content .overline { color: var(--blue-on-dark); }
.section-dark .value-item span { color: rgba(255,255,255,0.8); }
.section-dark .about-cta .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.section-dark .about-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--blue-on-dark); }
.section-dark .about-image-placeholder { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

/* ─── BLOG DARK ─── */
.section-dark .blog-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .blog-card h3 a { color: var(--white) !important; }
.section-dark .blog-card p { color: rgba(255,255,255,0.6); }
.section-dark .blog-meta span { color: rgba(255,255,255,0.4); }
.section-dark .blog-link { color: var(--blue-on-dark); }
.section-dark .blog-category { background: rgba(91,163,230,0.2); color: var(--white); border: 1px solid rgba(91,163,230,0.3); }
.section-dark .blog-cta .btn { background: var(--white) !important; color: var(--navy) !important; }

/* ─── REVIEWS DARK ─── */
.section-dark .testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .testimonial-card blockquote { color: rgba(255,255,255,0.8); }
.section-dark .testimonial-stars i { color: #f5c518; }
.section-dark .google-badge-stars i { color: #f5c518; }
.section-dark .google-badge-info { color: var(--gray-700) !important; }
.section-dark .google-badge-info strong { color: var(--gray-900) !important; }
.section-dark .testimonial-author-info h4 { color: var(--white); }
.section-dark .testimonial-author-info p { color: rgba(255,255,255,0.5); }
.section-dark .testimonial-avatar { background: rgba(3,77,162,0.3); color: var(--blue-on-dark); }

/* ─── VIDEO LIGHT ─── */
.video-section-light {
  background: var(--white) !important;
}
.video-section-light .section-header .overline { color: var(--blue); }
.video-section-light .section-header .overline::before,
.video-section-light .section-header .overline::after { background: var(--blue); }
.video-section-light .section-header h2 { color: var(--navy); }
.video-section-light .section-header h2 span { color: var(--blue); font-style: italic; }
.video-section-light .section-header p { color: var(--gray-500); }
.video-section-light .video-card { background: var(--gray-100); border: 1px solid var(--gray-200); }
.video-section-light .video-card h4 { color: var(--navy); }
.video-section-light .video-card p { color: var(--gray-500); }
.video-section-light .video-badge { background: var(--blue); color: var(--white); }
.video-section-light .video-play { color: var(--blue); }
.video-section-light .video-cta p { color: var(--gray-500); }
.video-section-light .btn-outline { border-color: var(--gray-300); color: var(--navy); }
.video-section-light .btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ─── LEAD MAGNET LIGHT ─── */
.lead-magnet-light {
  background: var(--cream) !important;
}
.lead-magnet-light .consult-bg { display: none; }
.lead-magnet-light .lead-magnet-icon { background: rgba(3,77,162,0.1) !important; }
.lead-magnet-light .lead-magnet-icon i { color: var(--blue) !important; }
.lead-magnet-light h3 { color: var(--navy) !important; }
.lead-magnet-light .lead-magnet-preview li { color: var(--gray-700); border-color: var(--gray-200); }
.lead-magnet-light .lead-magnet-preview li i { color: var(--blue) !important; }
.lead-magnet-light .lead-magnet-content h2 { color: var(--navy) !important; }
.lead-magnet-light .lead-magnet-content > p { color: var(--gray-500) !important; }
.lead-magnet-light .lead-magnet-form input { background: var(--white); border-color: var(--gray-200); color: var(--navy); }
.lead-magnet-light .lead-magnet-form input::placeholder { color: var(--gray-400); }
.lead-magnet-light .lead-magnet-form input:focus { border-color: var(--blue); }
.lead-magnet-light .lead-magnet-form button { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.lead-magnet-light .lead-magnet-privacy { color: var(--gray-400) !important; }

/* ─── NEWSLETTER DARK ─── */
.newsletter-section {
  background: var(--navy);
}
.newsletter-section .newsletter-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.newsletter-section .newsletter-card h2 { color: var(--white); }
.newsletter-section .newsletter-card p { color: rgba(255,255,255,0.6); }
.newsletter-section .newsletter-icon i { color: var(--blue-on-dark); }
.newsletter-section .newsletter-form input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.newsletter-section .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-section .newsletter-form input:focus { border-color: var(--blue-on-dark); }
.newsletter-section .newsletter-privacy { color: rgba(255,255,255,0.35); }

/* ─── FIX: Over ons checkmarks beter zichtbaar ─── */
.section-dark .value-check {
  background: rgba(91,163,230,0.3) !important;
  border: 1.5px solid rgba(91,163,230,0.6) !important;
}
.section-dark .value-check i {
  color: #5ba3e6 !important;
  font-size: 12px !important;
}
.section-dark .value-item span {
  color: rgba(255,255,255,0.9) !important;
}

/* ─── FIX: Blog category badge op donkere achtergrond ─── */
.section-dark .blog-category {
  background: #c9942e;
  color: var(--white);
  border: none;
  font-weight: 600;
}

/* ─── FIX: Video cards blauwe achtergrond ─── */
.video-section-light .video-card {
  background: var(--navy) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
.video-section-light .video-card h4 { color: var(--white) !important; }
.video-section-light .video-card p { color: rgba(255,255,255,0.5) !important; }
.video-section-light .video-badge { background: rgba(91,163,230,0.2) !important; color: var(--blue-on-dark) !important; border: 1px solid rgba(91,163,230,0.3); }
.video-section-light .video-play { color: var(--blue-on-dark) !important; opacity: 0.8; }

/* ─── FIX: Social media knoppen met platform kleuren ─── */
.btn-social {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 8px; font-weight: 600; text-decoration: none;
  transition: var(--transition);
}
.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: var(--white) !important; border: none !important;
}
.btn-instagram:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-linkedin {
  background: #0A66C2 !important;
  color: var(--white) !important; border: none !important;
}
.btn-linkedin:hover { background: #004182 !important; transform: translateY(-2px); }
.btn-youtube {
  background: #FF0000 !important;
  color: var(--white) !important; border: none !important;
}
.btn-youtube:hover { background: #cc0000 !important; transform: translateY(-2px); }

/* ─── FIX: Newsletter inschrijven knop ─── */
.newsletter-section .newsletter-form button {
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 600;
}
.newsletter-section .newsletter-form button:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ─── FIX: Diensten kaarten donkerder rand ─── */
.service-card {
  border: 1.5px solid var(--gray-300) !important;
  box-shadow: 0 2px 12px rgba(0,22,79,0.08) !important;
}
.service-card:hover {
  border-color: var(--blue) !important;
}

/* ─── FIX: Forfait model kaart donkerder rand ─── */
.pricing-block {
  border: 1.5px solid var(--gray-300) !important;
  box-shadow: 0 2px 12px rgba(0,22,79,0.08) !important;
}

/* ─── FOOTER ITAA LOGO ─── */
.footer-itaa {
  margin: 16px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── BLOG ARCHIVE DARK PAGINATION ─── */
.section-dark .nav-links a,
.section-dark .nav-links span {
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 6px;
}
.section-dark .nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.section-dark .nav-links .current {
  background: var(--blue);
  color: var(--white);
}

/* ─── TRUST BAR RESPONSIVE ─── */
@media (max-width: 900px) {
  .trust-bar .trust-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 32px;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 0 12px; }
}
@media (max-width: 600px) {
  .trust-bar .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: -24px;
    padding: 24px;
  }
  .trust-item { padding: 0; }
}


/* ─── CUSTOM CURSOR ─── */
@media (pointer: fine) {
  * { cursor: none !important; }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ─── SCROLL OFFSETS PER SECTION ─── */
section[id] { scroll-margin-top: 70px; }
#diensten { scroll-margin-top: 40px; }

/* ─── BREADCRUMBS (Yoast SEO) ─── */
.breadcrumbs { font-size: 14px; color: var(--gray-500); }
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .breadcrumb_last { color: var(--gray-600); font-weight: 500; }
