@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --ink-strong: #0d1f2d;
  --ink-soft: #3d5667;
  --accent: #0f6a97;
  --accent-2: #0c8b7d;
  --accent-3: #2ba584;
  --surface: #f5f7fb;
  --surface-card: #ffffff;
  --border: #d8e4f0;
  --border-light: #e8f0f7;
  --shadow: 0 8px 32px rgba(16, 34, 56, 0.1);
  --shadow-md: 0 16px 48px rgba(16, 34, 56, 0.12);
  --shadow-lg: 0 24px 64px rgba(16, 34, 56, 0.14);
  --shadow-soft: 0 4px 16px rgba(16, 34, 56, 0.06);
  --glassmorphism: rgba(255, 255, 255, 0.75);
  --gradient-primary: linear-gradient(135deg, #0f6a97 0%, #0c8b7d 100%);
  --gradient-secondary: linear-gradient(135deg, #2ba584 0%, #15a89b 100%);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

body {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--ink-strong);
  background: var(--surface);
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 2% 8%, rgba(15, 106, 151, 0.15), transparent 40%),
    radial-gradient(circle at 98% 2%, rgba(12, 139, 125, 0.12), transparent 35%),
    radial-gradient(circle at 50% 95%, rgba(43, 165, 132, 0.08), transparent 40%),
    linear-gradient(180deg, #fafbfd 0%, #f3f6fb 50%, #ecf1f8 100%);
  pointer-events: none;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100vw - 2.4rem));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0.8rem;
  z-index: 40;
  padding: 0.8rem 1.2rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(216, 228, 240, 0.6);
  border-radius: 20px;
  background: rgba(250, 252, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 4px 20px rgba(16, 34, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 95% 0%, rgba(15, 106, 151, 0.08), transparent 38%);
  opacity: 0.7;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9));
  border: 1px solid rgba(216, 228, 240, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 20px rgba(15, 106, 151, 0.1);
  transition: var(--transition-smooth);
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(15, 106, 151, 0.15);
}

.brand::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(21, 114, 161, 0.22) 0%, rgba(21, 114, 161, 0) 70%);
  pointer-events: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.header-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 0.5rem;
  border-bottom: 2.5px solid transparent;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: var(--transition-smooth);
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a:hover {
  color: var(--accent);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a.is-active {
  color: #0d4f72;
  font-weight: 700;
}

.header-nav a.is-active::after {
  width: 100%;
}

.header-nav a.is-active::before {
  content: "";
  position: absolute;
  left: -0.38rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  min-height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(15, 106, 151, 0.08), 0 4px 12px rgba(15, 106, 151, 0.22);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-mobile-panel {
  display: contents;
}

.header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(146, 180, 206, 0.55);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.88));
  cursor: pointer;
  color: var(--ink-strong);
  box-shadow:
    0 5px 16px rgba(16, 34, 56, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.header-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow:
    0 10px 24px rgba(15, 106, 151, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.header-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #18445d, #0f6a97);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.header-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.site-header.menu-open .header-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .header-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .header-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-logo {
  height: 96px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(21, 114, 161, 0.3));
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink-strong);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(16, 34, 56, 0.05);
}

.header-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--surface-card);
  box-shadow: 0 8px 20px rgba(15, 106, 151, 0.12);
  color: var(--accent);
}

.linkedin-logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
}

.section-shell {
  border: 1px solid var(--border-light);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(8px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 1.6rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 700ms cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  transition: var(--transition-smooth);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #051b2f 0%, #0d2d45 40%, #0f4058 100%);
  border-color: rgba(80, 160, 200, 0.2);
}

.hero .eyebrow {
  color: #50c4ef;
}

.hero .eyebrow::before {
  background: #50c4ef;
}

.hero h1 {
  color: #eef5fd;
}

.hero .intro {
  color: rgba(212, 230, 246, 0.82);
}

.hero .hero-profile {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, rgba(21, 114, 161, 0.35), rgba(22, 160, 133, 0.18));
}

.hero .hero-points article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.hero .hero-points h2 {
  color: #eef5fd;
}

.hero .hero-points p {
  color: rgba(200, 220, 240, 0.72);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #dceefa;
}

.section-shell:nth-of-type(2) {
  animation-delay: 140ms;
}

.section-shell:nth-of-type(3) {
  animation-delay: 220ms;
}

.section-shell:nth-of-type(4) {
  animation-delay: 320ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
  margin: 0 0 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.85;
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  line-height: 1.12;
  max-width: 18ch;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
  gap: 1.35rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-profile {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(21, 114, 161, 0.18), rgba(22, 160, 133, 0.1));
  padding: 0.55rem;
  display: flex;
  max-width: 320px;
  justify-self: end;
  box-shadow: 
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

.hero-profile:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.profile-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 10px 24px rgba(15, 32, 52, 0.16);
}

.intro {
  font-size: clamp(1.02rem, 1.9vw, 1.25rem);
  color: rgba(212, 230, 246, 0.88);
  max-width: 68ch;
  margin: 1.2rem 0 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-points article,
.card,
.post-card {
  background: var(--surface-card);
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-points article::before,
.card::before,
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 106, 151, 0.05) 0%, rgba(12, 139, 125, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-points article:hover,
.card:hover,
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 
    0 16px 40px rgba(15, 106, 151, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-points article:hover::before,
.card:hover::before,
.post-card:hover::before {
  opacity: 1;
}

.hero-points h2,
.section-head h2,
.cta-shell h2,
.card h3,
.post-card h3 {
  font-family: "Montserrat", sans-serif;
}

.hero-points h2 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.hero-points p,
.card p,
.post-card {
  margin: 0;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(16, 34, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 
    0 8px 20px rgba(15, 106, 151, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  border: 2px solid var(--border);
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.btn-quiet {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

/* Adjust btn-quiet for light backgrounds (outside hero) */
.cta-shell .btn-quiet {
  color: var(--ink-strong);
  border: 2px solid var(--accent);
  background: rgba(15, 106, 151, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-card {
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.88));
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.proof-kicker {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
}

.proof-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-head h2,
.cta-shell h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.section-head {
  margin-bottom: 0.85rem;
}

.cards-grid,
.posts-grid {
  display: grid;
  gap: 0.8rem;
}

.services-intro {
  margin: 0.2rem 0 0.95rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 74ch;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.services-tags span {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(15, 106, 151, 0.3);
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, rgba(15, 106, 151, 0.08), rgba(12, 139, 125, 0.06));
  color: #0d3d50;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.services-tags span:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(15, 106, 151, 0.15), rgba(12, 139, 125, 0.12));
  transform: translateY(-2px);
}

.service-links {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.service-links a {
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.88));
  color: var(--ink-strong);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-links a:hover {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 106, 151, 0.2);
}

.service-links a:hover::before {
  opacity: 1;
}

.related-topics {
  margin-top: 1.5rem;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.related-topics h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink-strong);
}

.related-topic-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.related-topic-links a {
  color: var(--ink-strong);
  text-decoration: none;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 1rem 2.5rem 1rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.9));
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition-smooth);
  position: relative;
  overflow: visible;
  display: block;
}

.related-topic-links a::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.related-topic-links a:hover,
.related-topic-links a:focus-visible {
  color: #fff;
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 32px rgba(15, 106, 151, 0.25);
  transform: translateY(-3px);
}

.related-topic-links a:hover::after,
.related-topic-links a:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.related-topic-links a:focus-visible {
  outline: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-card {
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 253, 0.85));
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.process-card:hover::before {
  opacity: 1;
}

.process-index {
  margin: 0 0 0.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-card h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0 0 0.35rem;
}

.process-card p {
  margin: 0;
  color: var(--ink-soft);
}

.results-shell {
  background: linear-gradient(135deg, #051525 0%, #0a2540 50%, #0d3548 100%);
  border-color: rgba(80, 170, 220, 0.2);
}

.results-shell .eyebrow {
  color: #4dd4f5;
}

.results-shell .section-head h2 {
  color: #f0f7ff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.result-stat {
  padding: 1.8rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.result-stat:last-child {
  border-right: none;
}

.result-number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(135deg, #4dd4f5, #5ee0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-label {
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(210, 228, 244, 0.72);
  text-align: center;
  max-width: 16ch;
}

.cases-intro {
  color: rgba(222, 236, 250, 0.8);
  margin: 0 0 1rem;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.case-card {
  border: 1px solid rgba(159, 210, 239, 0.24);
  border-radius: 18px;
  padding: 1.35rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 224, 255, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
  box-shadow:
    0 12px 28px rgba(8, 24, 43, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(94, 224, 255, 0.16), rgba(42, 165, 132, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.case-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #58d8ff, #35cba8);
  opacity: 0.85;
}

.case-card:hover {
  border-color: rgba(113, 216, 255, 0.5);
  box-shadow:
    0 20px 42px rgba(16, 42, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-5px);
}

.case-card:hover::before {
  opacity: 1;
}

.case-card:nth-child(3n + 2)::after {
  background: linear-gradient(90deg, #68dcff, #4ea4ff);
}

.case-card:nth-child(3n + 3)::after {
  background: linear-gradient(90deg, #54d8c4, #56db8f);
}

.case-card .eyebrow {
  color: rgba(132, 220, 255, 0.95);
  margin-bottom: 0.45rem;
  letter-spacing: 0.09em;
}

.case-card h3 {
  font-family: "Montserrat", sans-serif;
  color: #f4f9ff;
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.case-card p {
  color: rgba(214, 231, 246, 0.86);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.9));
  padding: 0.2rem 1rem 0.8rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(15, 106, 151, 0.12);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink-strong);
  padding: 0.85rem 0;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-item:hover summary {
  color: var(--accent);
}

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

.faq-item summary::after {
  content: "＋";
  float: right;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "－";
  transform: rotate(90deg);
}

.faq-item p {
  color: var(--ink-soft);
  margin: 0;
}

.service-page .hero {
  margin-top: 2rem;
}

.service-breadcrumb {
  margin: 0 0 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.service-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover,
.service-breadcrumb a:focus-visible {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-breadcrumb .breadcrumb-sep {
  color: var(--ink-soft);
  opacity: 1;
}

/* Breadcrumb op donkere hero achtergrond */
.hero .service-breadcrumb {
  color: rgba(190, 218, 240, 0.75);
}

.hero .service-breadcrumb a {
  color: #7dd4f5;
}

.hero .service-breadcrumb a:hover,
.hero .service-breadcrumb a:focus-visible {
  color: #a8e6ff;
}

.hero .service-breadcrumb .breadcrumb-sep {
  color: rgba(190, 218, 240, 0.5);
}

.service-cta-strip {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Service page support/verdieping section */
.page-support-links {
  margin-top: 2.8rem !important;
  border-top: 2px solid var(--border-light);
  padding-top: 2.4rem !important;
  background: linear-gradient(135deg, rgba(15, 106, 151, 0.04), rgba(12, 139, 125, 0.03)) !important;
}

.page-support-links .section-head {
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1.5px solid var(--border-light);
}

.page-support-links .section-head .eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 800;
}

.page-support-links .section-head h2 {
  color: var(--ink-strong);
  margin-top: 0.4rem;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.related-topic-links {
  margin-bottom: 2rem;
}

.related-topic-links a {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mini FAQ styling */
.page-mini-faq {
  border-top: 1.5px solid var(--border-light);
  padding-top: 1.6rem;
  margin-top: 1.8rem;
}

.page-mini-faq .faq-item {
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(216, 228, 240, 0.4);
  padding-bottom: 0.9rem;
}

.page-mini-faq .faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-mini-faq summary {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink-strong);
  cursor: pointer;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.page-mini-faq summary:hover {
  color: var(--accent);
}

.page-mini-faq .faq-item p {
  font-size: 0.9rem;
  margin-top: 0.7rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.legal-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.legal-accordion {
  padding: 0.2rem 1rem 1rem;
}

.legal-accordion summary {
  list-style: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink-strong);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(215, 227, 238, 0.9);
}

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

.legal-accordion summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.legal-accordion[open] summary::after {
  content: "-";
}

.legal-accordion[open] summary {
  margin-bottom: 0.35rem;
}

.legal-card h4 {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.legal-card h4 {
  margin-top: 0.9rem;
  font-size: 1.02rem;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card ul {
  margin: 0.45rem 0 0.25rem;
  padding-left: 1.1rem;
}

.legal-card a {
  color: var(--accent);
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.posts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-card .post-date {
  margin: 0;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 700;
}

.post-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink-strong);
}

.post-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.cta-shell p {
  max-width: 64ch;
}

.cta-content {
  padding-right: 1rem;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.85fr);
  gap: 2.4rem;
  align-items: start;
}

.cta-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  height: auto;
  min-height: 0;
}

.kingfisher-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 22px;
  box-shadow: 
    0 20px 60px rgba(15, 106, 151, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  object-fit: cover;
  object-position: center;
  animation: floatKingfisher 3.5s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kingfisher-image:hover {
  transform: scale(1.04);
  box-shadow: 
    0 28px 80px rgba(15, 106, 151, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes floatKingfisher {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cta-shell .eyebrow {
  display: block;
  margin-top: 0.15rem;
}


.contact-quick-form {
  margin-top: 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-title {
  margin: 0 0 0.55rem;
  color: var(--ink-strong);
  font-weight: 700;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.contact-quick-form label {
  display: grid;
  gap: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.form-required {
  color: var(--accent);
  font-weight: 700;
  margin-left: 1px;
}

.contact-quick-form input,
.contact-quick-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink-strong);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick-form input:focus,
.contact-quick-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 106, 151, 0.12);
}

.contact-quick-form input::placeholder,
.contact-quick-form textarea::placeholder {
  color: var(--ink-muted, #a0b4c8);
  font-weight: 400;
}

.contact-quick-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-quick-form .btn {
  margin-top: 0.2rem;
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(6, 29, 46, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(180, 208, 230, 0.25);
}

.mobile-contact-btn {
  flex: 1;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  padding: 0.72rem 0.7rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.mobile-contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-contact-btn:hover::before {
  opacity: 1;
}

.mobile-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(16, 34, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mobile-contact-btn-alt {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #0a6aa0;
  outline-offset: 3px;
}

.profiel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.profiel-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 0.95rem;
  line-height: 1.25;
  font-weight: 600;
}

.profiel-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: var(--ink-strong);
  font-weight: 500;
  margin: 0 0 0.95rem;
  max-width: 72ch;
  line-height: 1.7;
}

.profiel-body {
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
  max-width: 68ch;
}

.profiel-list {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.profiel-list li {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.profiel-list li::marker {
  color: var(--accent);
}

.profiel-quote-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 0.95rem;
  box-shadow: 
    0 12px 32px rgba(15, 106, 151, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.profiel-quote {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  margin: 0 0 0.8rem;
  line-height: 1.65;
  font-weight: 600;
}

.profiel-attribution {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

.profiel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.profiel-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(21, 114, 161, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(15, 106, 151, 0.06);
  color: #12425f;
  font-size: 0.84rem;
  font-weight: 600;
}

.linkedin-embed-card {
  margin-top: 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 253, 0.92));
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.linkedin-embed-card .eyebrow {
  margin-bottom: 0.35rem;
}

.linkedin-embed-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  color: var(--ink-strong);
}

.linkedin-embed-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.7rem;
  min-height: 0;
}

.linkedin-custom-card {
  width: 100%;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.8rem;
}

.linkedin-custom-header {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.linkedin-custom-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.linkedin-custom-name {
  margin: 0;
  font-weight: 700;
  color: var(--ink-strong);
}

.linkedin-custom-role {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.linkedin-custom-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.linkedin-custom-stats span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 106, 151, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: #12425f;
  background: rgba(15, 106, 151, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
}

.linkedin-direct-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-strong);
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  transition: var(--transition-smooth);
}

.linkedin-direct-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 106, 151, 0.12);
}

.hero-linkedin-embed {
  margin-top: 1rem;
  max-width: 380px;
}

.hero-linkedin-embed .eyebrow {
  color: var(--accent);
}

.site-footer {
  background: linear-gradient(135deg, rgba(15, 106, 151, 0.08), rgba(12, 139, 125, 0.05));
  border-top: 1.5px solid var(--border-light);
  padding: 2.4rem 0 1rem;
  margin-top: 3rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 0 auto 1.8rem;
  padding: 0 1.2rem;
}

.footer-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  color: var(--ink-strong);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.footer-section h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: var(--ink-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.footer-section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin: 0 0 0.5rem;
}

.footer-section ul li a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 106, 151, 0.22);
  background: rgba(15, 106, 151, 0.1);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: visible;
  transition: var(--transition-smooth);
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(16, 34, 56, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.footer-bottom {
  width: min(1180px, calc(100vw - 2.4rem));
  margin: 0 auto;
  padding: 1.2rem 1.2rem 0;
  border-top: 1px solid rgba(15, 106, 151, 0.15);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero-layout,
  .profiel-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    max-width: 300px;
    max-height: none;
    margin: 0 auto;
  }

  .profile-photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
  }

  .hero-points,
  .proof-grid,
  .cards-grid,
  .posts-grid,
  .legal-grid,
  .process-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-links {
    grid-template-columns: 1fr;
  }

  .related-topic-links,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    min-height: 320px;
  }

  .kingfisher-image {
    max-width: 260px;
  }

  .cta-content {
    padding-right: 0;
  }

  .hero-linkedin-embed {
    max-width: 100%;
  }

  .linkedin-embed-wrap {
    min-height: 0;
  }

  .brand {
    padding: 0.25rem 0.65rem;
  }

  .brand-logo {
    height: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
    top: 0.4rem;
    padding: 0.55rem 0.65rem;
    border-radius: 16px;
    background:
      linear-gradient(150deg, rgba(252, 255, 255, 0.86), rgba(241, 249, 255, 0.74));
    backdrop-filter: blur(22px) saturate(180%);
    box-shadow:
      0 10px 28px rgba(16, 34, 56, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .header-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .header-nav,
  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .header-mobile-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid rgba(165, 195, 219, 0.45);
    border-radius: 16px;
    background: linear-gradient(150deg, rgba(253, 255, 255, 0.99), rgba(239, 248, 255, 0.97));
    backdrop-filter: blur(16px) saturate(170%);
    box-shadow:
      0 24px 46px rgba(10, 28, 44, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.985);
    transform-origin: top center;
    transition: opacity 0.2s ease, transform 0.24s ease;
    z-index: 45;
  }

  .site-header.menu-open .header-mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.22rem;
    padding: 0;
    margin: 0;
  }

  .header-nav a {
    width: 100%;
    padding: 0.76rem 0.72rem;
    border-radius: 10px;
    border: 1px solid transparent;
    color: #204054;
  }

  .header-nav a:hover,
  .header-nav a:focus-visible {
    border-color: rgba(15, 106, 151, 0.2);
    background: rgba(15, 106, 151, 0.08);
    color: #0d4f72;
  }

  .header-nav a.is-active {
    border-color: rgba(15, 106, 151, 0.24);
    background: linear-gradient(135deg, rgba(15, 106, 151, 0.15), rgba(12, 139, 125, 0.1));
    color: #083d5b;
  }

  .header-nav a.is-active::before {
    left: 0.38rem;
    width: 5px;
    height: 52%;
    min-height: 16px;
  }

  .header-actions {
    display: flex;
    border-top: 1px solid rgba(188, 208, 223, 0.55);
    padding: 0.65rem 0.15rem 0.2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .header-actions .header-link {
    justify-content: center;
    border-radius: 11px;
    color: #17384d;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  @supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
    .site-header {
      background: #f8fcff;
      border-color: rgba(152, 185, 209, 0.75);
    }

    .header-mobile-panel {
      background: #f8fcff;
      border-color: rgba(152, 185, 209, 0.75);
      box-shadow: 0 20px 36px rgba(10, 28, 44, 0.18);
    }
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .page-support-links {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-support-links .section-head {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
  }

  .page-support-links .section-head h2 {
    font-size: 1.4rem;
  }

  .page-mini-faq {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
  }
}

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

  .section-shell {
    border-radius: 16px;
    padding: 1.2rem;
    margin: 0.65rem 0;
  }

  .page-support-links {
    margin-top: 1.6rem !important;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    padding: 1.6rem 1.2rem !important;
    border-radius: 0;
    border-top-width: 1px;
  }

  .page-support-links .section-head {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }

  .page-support-links .section-head h2 {
    font-size: 1.25rem;
  }

  .page-mini-faq {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .page-mini-faq summary {
    font-size: 0.95rem;
  }

  .profile-photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: none;
  }

  .hero-profile {
    max-width: 250px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .hero-layout {
    gap: 0.8rem;
  }

  .btn {
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-actions {
    margin-bottom: 0.3rem;
  }

  .result-number {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .header-nav a {
    white-space: normal;
    flex-shrink: 1;
  }
  .cta-visual {
    min-height: 280px;
  }

  .kingfisher-image {
    max-width: 220px;
  }

  .linkedin-embed-card {
    padding: 0.85rem;
  }

  .linkedin-embed-card h3 {
    font-size: 1.04rem;
  }

  .linkedin-embed-wrap {
    min-height: 0;
  }

  .mobile-contact-bar {
    display: flex;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.8rem;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-social a {
    width: auto;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: calc(4.8rem + env(safe-area-inset-bottom));
    padding-top: 1.6rem;
  }

  .footer-bottom {
    padding: 0.8rem 0.8rem 0;
  }
}

/* ── Deel deze pagina strip ─────────────────────────────── */
.share-strip {
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(241,248,255,0.88));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.share-strip-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  white-space: nowrap;
}

.share-strip-buttons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  background: none;
  font-family: inherit;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.share-btn:hover {
  transform: translateY(-1px);
}

.share-btn-linkedin {
  background: rgba(10, 102, 194, 0.08);
  border-color: rgba(10, 102, 194, 0.2);
  color: #0a66c2;
}
.share-btn-linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: rgba(10, 102, 194, 0.35);
}

.share-btn-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.22);
  color: #128c4a;
}
.share-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.38);
}

.share-btn-email {
  background: rgba(15, 106, 151, 0.07);
  border-color: rgba(15, 106, 151, 0.18);
  color: var(--accent);
}
.share-btn-email:hover {
  background: rgba(15, 106, 151, 0.14);
  border-color: rgba(15, 106, 151, 0.32);
}

.share-btn-copy {
  background: rgba(100, 116, 139, 0.07);
  border-color: rgba(100, 116, 139, 0.18);
  color: var(--ink-soft);
}
.share-btn-copy:hover {
  background: rgba(100, 116, 139, 0.13);
  border-color: rgba(100, 116, 139, 0.3);
}

.share-btn-copied {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  color: #059669 !important;
}

@media (max-width: 560px) {
  .share-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}
