/* ─────────────────────────────────────────
   BOLLENIX — Main Stylesheet
   ───────────────────────────────────────── */

/* ── Variables ── */
:root {
  --navy:       #1a2744;
  --navy-light: #243358;
  --blue:       #4a90d9;
  --blue-dark:  #2a55b8;
  --blue-light: #e8f1fb;
  --white:      #ffffff;
  --grey-bg:    #f5f7fa;
  --grey-border:#e2e8f0;
  --text:       #2c3e50;
  --text-muted: #6b7c93;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(26,39,68,0.08);
  --shadow-lg:  0 8px 48px rgba(26,39,68,0.14);
  --shadow-card:0 2px 12px rgba(26,39,68,0.07), 0 8px 32px rgba(26,39,68,0.06);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.025em; }

/* Serif display: hero headline + personal about heading only */
.hero h1,
.about-serif {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.14;
}
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-grey { background: var(--grey-bg); }
.section-navy { background: var(--navy); }

/* ── Section Titles ── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 0;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }
.title-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-header-left { margin-bottom: 56px; }
.section-header-left .title-accent { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { opacity: 0.88; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  box-shadow: 0 6px 20px rgba(26,39,68,0.28);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-blue {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.btn-blue:hover {
  background: #1e469e;
  border-color: #1e469e;
  box-shadow: 0 6px 20px rgba(42,85,184,0.3);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.nav.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Body offset so fixed nav doesn't overlap content */
body {
  padding-top: 84px;
}
.nav.nav-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(26,39,68,0.10);
}

/* ── Nav inner height ── */
.nav-inner {
  display: flex;
  align-items: center;
  height: 84px;
  gap: 40px;
  transition: height 0.3s ease;
}
.nav.nav-scrolled .nav-inner { height: 64px; }

/* ── Logo ── */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo .logo-dark  { display: none;  }
.nav-logo .logo-white { display: block; }
.nav.nav-scrolled .nav-logo .logo-dark  { display: block; }
.nav.nav-scrolled .nav-logo .logo-white { display: none;  }

/* ── Nav links list ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links li { position: relative; }

/* All link items */
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav.nav-scrolled .nav-links a { color: #1a2744; }

/* Hover / active underline */
.nav-links li:not(.has-dropdown) > a::after,
.nav-links .has-dropdown > .dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.nav.nav-scrolled .nav-links li:not(.has-dropdown) > a::after,
.nav.nav-scrolled .nav-links .has-dropdown > .dropdown-toggle::after {
  background: var(--blue);
}
.nav-links li:not(.has-dropdown) > a:hover::after,
.nav-links li:not(.has-dropdown) > a.active::after,
.nav-links .has-dropdown > .dropdown-toggle:hover::after,
.nav-links .has-dropdown.open > .dropdown-toggle::after { transform: scaleX(1); }

.nav-links a:hover  { color: #ffffff; }
.nav-links a.active { color: #ffffff; }
.nav.nav-scrolled .nav-links a:hover  { color: var(--blue-dark); }
.nav.nav-scrolled .nav-links a.active { color: var(--blue-dark); }

/* ── CTA button ── */
.nav-links .nav-cta {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.80);
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-links .nav-cta::after { display: none !important; }
.nav-links .nav-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: #ffffff;
  color: #ffffff;
}
.nav.nav-scrolled .nav-links .nav-cta {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}
.nav.nav-scrolled .nav-links .nav-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(74,144,217,0.35);
  color: #ffffff;
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
  padding: 4px 8px;
  opacity: 0.7;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.60);
  opacity: 1;
}
.lang-btn.active {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.80);
  opacity: 1;
}
.nav.nav-scrolled .lang-btn {
  border-color: rgba(26,39,68,0.20);
  opacity: 0.6;
  color: var(--navy);
}
.nav.nav-scrolled .lang-btn:hover {
  background: rgba(42,85,184,0.08);
  border-color: var(--blue);
  opacity: 1;
}
.nav.nav-scrolled .lang-btn.active {
  background: rgba(42,85,184,0.10);
  border-color: var(--blue);
  opacity: 1;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle svg { transition: transform var(--transition); }
.has-dropdown:hover .dropdown-toggle svg,
.has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: flex;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 6px;
}
.dropdown a:hover { background: var(--grey-bg); color: var(--blue-dark); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background 0.3s ease;
}
.nav.nav-scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero (homepage) ── */
/* Pull the hero up behind the sticky transparent nav so dark bg shows through */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: -84px;        /* same as nav height */
  padding-top: 84px;        /* compensate so content isn't hidden */
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.95) 40%, rgba(36,51,88,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(130,180,240,0.8);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: #4a90d9;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.13;
}
.hero h1 .accent { color: var(--blue); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero Particle Canvas (full background) ── */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 75% at 78% 55%, rgba(74,144,217,0.22) 0%, transparent 68%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 72% 28%, rgba(42,85,184,0.16) 0%, transparent 62%);
  z-index: 0;
}

/* ── Hero Two-Column Layout ── */
.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-inner .hero-content { max-width: none; } /* unused */
.hero-mock {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 60px 0;
}
.browser-frame {
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 48px 100px rgba(0,0,0,0.55),
    0 16px 40px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.07);
  background: #0d1530;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.browser-frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.browser-bar {
  background: #080e1f;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.69rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  margin-left: 8px;
  letter-spacing: 0.01em;
}
.browser-screen { overflow: hidden; }
.mock-nav {
  background: #1a2744;
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.mock-nav-logo { width: 56px; height: 7px; background: rgba(255,255,255,0.8); border-radius: 3px; }
.mock-nav-links { display: flex; gap: 8px; margin-left: auto; }
.mock-nav-links span { width: 24px; height: 5px; background: rgba(255,255,255,0.28); border-radius: 2px; }
.mock-nav-cta { width: 40px; height: 16px; background: #4a90d9; border-radius: 4px; margin-left: 6px; }
.mock-hero-section {
  background: linear-gradient(135deg, #1a2744 0%, #1e2f55 100%);
  height: 108px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}
.mock-hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 40%, rgba(74,144,217,0.35) 0%, transparent 60%);
}
.mock-h1 { height: 10px; background: rgba(255,255,255,0.85); border-radius: 3px; width: 68%; margin-bottom: 6px; position: relative; z-index: 1; }
.mock-h2 { height: 10px; background: rgba(74,144,217,0.8); border-radius: 3px; width: 50%; margin-bottom: 10px; position: relative; z-index: 1; }
.mock-sub { height: 4px; background: rgba(255,255,255,0.28); border-radius: 2px; width: 80%; margin-bottom: 10px; position: relative; z-index: 1; }
.mock-cta { display: flex; gap: 8px; position: relative; z-index: 1; }
.mock-cta span { height: 16px; border-radius: 4px; }
.mock-cta span:first-child { width: 54px; background: #2a55b8; }
.mock-cta span:last-child { width: 38px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28); }
.mock-body { background: #f5f7fa; padding: 12px 14px 14px; }
.mock-section-label { height: 4px; background: #d4dff0; border-radius: 2px; width: 30%; margin-bottom: 8px; }
.mock-body-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mock-body-card { background: white; border-radius: 6px; padding: 8px; box-shadow: 0 1px 4px rgba(26,39,68,0.06); border: 1px solid #e8edf5; }
.mock-body-card-icon { width: 15px; height: 15px; background: #eef4fc; border-radius: 4px; margin-bottom: 5px; }
.mock-body-card-line { height: 3px; background: #e2e8f0; border-radius: 2px; margin-bottom: 3px; }
.mock-body-card-line:first-of-type { width: 70%; }
.mock-body-card-line:last-child { width: 88%; }

/* Floating badges */
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -20px;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.04);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.3rem; line-height: 1; }
.hero-badge-text strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; color: #1a2744; line-height: 1.2; }
.hero-badge-text span { font-size: 0.68rem; color: #6b7c93; }
.hero-counter {
  position: absolute;
  top: 50px;
  right: -16px;
  background: #1a2744;
  border: 1px solid rgba(74,144,217,0.28);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: floatBadge 4s ease-in-out infinite;
  animation-delay: 2s;
}
.hero-counter strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; color: white; line-height: 1.1; letter-spacing: -0.02em; }
.hero-counter span { font-size: 0.67rem; color: rgba(255,255,255,0.48); margin-top: 2px; display: block; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,144,217,0.12) 0%, transparent 70%);
}
.page-hero-content { position: relative; }
.page-hero-breadcrumb {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero-sub {
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ── Stats ── */
.stats-section { background: var(--navy); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 700;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.45; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 36px 28px 30px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,39,68,0.05), 0 8px 32px rgba(26,39,68,0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
/* Blue left accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 24px; left: 0;
  width: 3px; height: 40px;
  background: linear-gradient(180deg, #4a90d9, #2a55b8);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
}
/* Decorative background number */
.service-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(26,39,68,0.045);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(74,144,217,0.10), 0 2px 8px rgba(26,39,68,0.06);
  border-color: rgba(74,144,217,0.30);
}
.service-card:hover::before { opacity: 1; height: 56px; }
.service-icon {
  width: 50px; height: 50px;
  background: #eef4fc;
  border: 1px solid #d4e5f7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-dark);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.08rem; color: var(--navy); letter-spacing: -0.01em; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px; line-height: 1.7; }
.service-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 10px; color: var(--navy); }

/* ── Two-column ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}
.col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.col-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 40px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-border);
  text-align: center;
}
.stars { color: #f0b429; font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.testimonial-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.testimonial-company { font-size: 0.82rem; color: var(--text-muted); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.carousel-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,39,68,0.2);
}
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-border);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
  border: none;
}
.dot.active { width: 24px; border-radius: 4px; background: var(--blue-dark); }

/* ── Contact Form ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: #edfaf4;
  border: 1px solid #b7e8d2;
  color: #1a6b47;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
  margin-top: 16px;
  font-weight: 500;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-value { font-size: 0.95rem; color: var(--text); }
.contact-info-value a { color: var(--blue-dark); }
.map-wrap {
  width: 100%;
  height: 240px;
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-border);
  overflow: hidden;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--navy); border-color: var(--navy); }
.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.5); }
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price span { font-size: 1.3rem; vertical-align: super; font-weight: 500; }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.55; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-divider { height: 1px; background: var(--grey-border); margin-bottom: 24px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.82); }
.feat-check {
  width: 18px; height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-dark);
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 2px;
}
.pricing-card.featured .feat-check { background: rgba(74,144,217,0.25); color: #7ab3ff; }
.pricing-card .btn { text-align: center; justify-content: center; width: 100%; }
.pricing-card.featured .btn { background: var(--white); color: var(--navy); border-color: var(--white); }
.pricing-card.featured .btn:hover { background: #f0f4ff; }

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-border);
  background: var(--white);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(74,144,217,0.25); }
.portfolio-img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  background: var(--white);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.portfolio-card:hover .portfolio-overlay span { transform: translateY(0); }
.portfolio-info { padding: 24px; }
.portfolio-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.portfolio-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-icon { width: 48px; height: 48px; margin-bottom: 20px; display: flex; align-items: center; justify-content: flex-start; color: var(--accent); }
.value-icon svg { stroke: var(--accent); }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(74,144,217,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }

/* ── Service Detail (diensten page) ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--grey-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; }
.service-detail-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail-content h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-detail-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

/* ── Legal text ── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.35rem; margin: 44px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 6px; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--grey-border); }

/* ── Unsubscribe ── */
.unsubscribe-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.unsubscribe-icon {
  width: 80px; height: 80px;
  background: #edfaf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.unsubscribe-box { max-width: 520px; }
.unsubscribe-box h1 { font-size: 1.9rem; margin-bottom: 16px; }
.unsubscribe-box p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.unsubscribe-box a { color: var(--blue-dark); }

/* ── Footer ── */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--blue); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: inline-block;
  padding: 4px 0;
  min-height: 32px;
  line-height: 24px;
}
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blue); }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }
.fade-in-d5 { transition-delay: 0.5s; }

/* ── Page Load Reveal ── */
@keyframes loadReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.load-reveal { opacity: 0; }
.load-reveal.start { animation: loadReveal 0.6s ease forwards; }

.btn { position: relative; }

/* Center lone last card in 3-col grid (e.g. 7 cards → card 7 centered) */
@media (min-width: 1025px) {
  .services-grid > .service-card:last-child:nth-child(3n+1) {
    grid-column: 2;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mock { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  /* Tablet: reduce excessive gaps */
  .service-detail { gap: 40px; }
  .contact-grid { gap: 40px; }
  .two-col { gap: 48px; }
  /* Tablet: pricing & portfolio still 3-col but tighter padding */
  .pricing-card { padding: 32px 24px; }
  .pricing-price { font-size: clamp(2rem, 3.5vw, 3rem); }
  /* Values: 2 columns on tablet */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  /* Portfolio: 2 columns on tablet */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  /* Pricing: 1 featured + 2 others — stack to column */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  /* Contact: stack on tablet */
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 64px; gap: 16px; }
  .lang-switcher { margin-left: 6px; gap: 1px; }
  .lang-btn { width: 30px; height: 26px; font-size: 1rem; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.4s ease, padding 0.4s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  /* Slide mobile menu out with nav when nav hides */
  .nav.nav-hidden .nav-links.open {
    transform: translateY(-100%);
    pointer-events: none;
  }
  .nav-links.open { max-height: 85vh; padding: 16px 16px 24px; }
  /* Force dark text inside mobile panel */
  .nav-links a,
  .nav.nav-scrolled .nav-links a { color: #1a2744; }
  .nav-links a:hover,
  .nav.nav-scrolled .nav-links a:hover { color: var(--blue-dark); }
  .nav-links .nav-cta,
  .nav.nav-scrolled .nav-links .nav-cta {
    text-align: center;
    justify-content: center;
    margin-left: 0;
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
  }
  /* Minimum 44px tap targets */
  .nav-links a { padding: 12px 14px; font-size: 1rem; min-height: 44px; display: flex; align-items: center; }
  .btn { min-height: 44px; }
  .service-link { min-height: 44px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 8px;
    display: none;
    pointer-events: auto;
  }
  .has-dropdown.open .dropdown { display: block; }
  /* Hero */
  .hero { margin-top: -64px; padding-top: 64px; min-height: auto; padding-bottom: 0; }
  .hero-content { padding: 56px 0 52px; max-width: 100%; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-buttons .btn { justify-content: center; width: 100%; }
  .hero-subtitle { font-size: 1rem; }
  /* Two-col: hide large decorative image, keep content readable */
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col-reverse { direction: ltr; }
  .col-image { max-height: 260px; }
  .col-image img { height: 260px; object-fit: cover; }
  /* Layouts */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .service-detail.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  /* Cards */
  .testimonial-slide { padding: 0 4px; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-text { font-size: 0.95rem; }
  .cta-banner { padding: 36px 20px; }
  .section-header { margin-bottom: 36px; }
  /* Stats: 2×2 grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 32px 16px; }
  /* Service detail */
  .service-detail-content h3 { font-size: 1.25rem; }
  .service-detail-img { max-height: 220px; overflow: hidden; }
  /* Page hero */
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  /* Pricing */
  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 2.4rem; }
}
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .container { padding: 0 14px; }
  /* Services: 2 columns on 480px to prevent excessive length */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 22px 16px 20px; }
  .service-card p { display: none; } /* Hide description, keep icon + title + link */
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
  .stat-item { padding: 24px 12px; }
  /* Typography scaling */
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Cards */
  .value-card { padding: 24px 18px; }
  .cta-banner { padding: 28px 14px; }
  .cta-banner h2 { font-size: 1.4rem; }
  /* Testimonials */
  .testimonial-card { padding: 24px 16px; }
  .testimonial-text { font-size: 0.9rem; }
  .carousel-controls { margin-top: 20px; }
  /* Footer: single column on very small screens */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-price { font-size: 2rem; }
  /* Section header */
  .section-header { margin-bottom: 28px; }
  /* Service detail: hide illustration on tiny screens */
  .service-detail-img { display: none; }
  .service-detail { padding: 28px 0; }
  /* Page hero */
  .page-hero { padding: 36px 0 28px; }
  /* Form: larger touch targets */
  .form-group input, .form-group textarea { padding: 14px 16px; font-size: 1rem; }
  /* Footer: compact on tiny screens */
  .footer { padding: 48px 0 0; }
  /* Nav logo scales down on tiny screens */
  .nav-logo svg { width: 160px; }
  /* Lang switcher: smaller on tiny screens */
  .lang-btn { width: 26px; height: 24px; font-size: 0.8rem; }
}

/* ── Mobile service-detail accordion ── */
@media (max-width: 768px) {
  .sd-toggle {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
    padding: 4px 0 6px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  .sd-toggle-text { flex: 1; min-width: 0; }
  .sd-toggle-text .section-eyebrow { margin-bottom: 6px; }
  .sd-toggle-text h3 { margin-bottom: 0; }
  .sd-arrow {
    width: 34px; height: 34px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
    flex-shrink: 0;
    margin-top: 6px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
                background 0.2s ease, color 0.2s ease;
  }
  .service-detail.sd-open .sd-arrow {
    transform: rotate(180deg);
    background: var(--blue-dark);
    color: #ffffff;
  }
  .service-detail-collapsible {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .service-detail { padding: 0; border-top: 1px solid var(--grey-border); border-bottom: none; }
  .service-detail:last-child { border-bottom: 1px solid var(--grey-border); }
  .service-detail-content { padding: 16px 0; }
  .service-detail-collapsible .check-list { margin-top: 16px; }
  .service-detail-collapsible .btn { margin-top: 20px !important; }
}

/* ── Pricing Section ── */
.pricing-section {
  background: #0d1530;
  position: relative;
  overflow: hidden;
}
.pricing-section .section-eyebrow { color: #7ab3ff; }
.pricing-section .section-title   { color: #ffffff; }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.58); }
.pricing-section .title-accent { background: var(--blue); }

.pricing-bg-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(74,144,217,0.14) 0%, transparent 70%);
  pointer-events: none;
}

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

.pricing-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74,144,217,0.16);
  background: linear-gradient(145deg, #1a2744 0%, #141e38 100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(10,16,40,0.55), 0 0 0 1px rgba(74,144,217,0.28);
}
.pricing-card-popular {
  border-color: rgba(74,144,217,0.45);
  background: linear-gradient(145deg, #1e3060 0%, #1a2744 100%);
  box-shadow: 0 0 60px rgba(74,144,217,0.18), 0 8px 40px rgba(10,16,40,0.4);
}
.pricing-card-popular:hover {
  box-shadow: 0 0 80px rgba(74,144,217,0.28), 0 24px 64px rgba(10,16,40,0.5);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2a55b8, #4a90d9);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-inner { padding: 32px 26px; }

.pricing-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.pricing-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-price-contact {
  font-size: 1.55rem;
  color: rgba(255,255,255,0.85);
}
.pricing-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.pricing-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 12px;
}

.pricing-hosting {
  font-size: 0.78rem;
  font-weight: 500;
  color: #7ab3ff;
  margin-bottom: 22px;
  padding: 6px 10px;
  background: rgba(74,144,217,0.08);
  border-radius: 6px;
  border-left: 2px solid rgba(74,144,217,0.45);
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1),
              opacity 0.2s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid transparent;
}
.pricing-btn:hover  { transform: translateY(-1px); }
.pricing-btn:active { transform: translateY(0); }
.pricing-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.pricing-btn-primary {
  background: linear-gradient(160deg, #4a90d9 0%, #2a55b8 100%);
  color: #fff;
  border-color: rgba(74,144,217,0.4);
  box-shadow: 0 4px 22px rgba(42,85,184,0.38);
}
.pricing-btn-primary:hover { box-shadow: 0 6px 30px rgba(42,85,184,0.55); }

.pricing-btn-outline {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.14);
}
.pricing-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.26);
}

.pricing-features { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; }
.pricing-features-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.pricing-features ul { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.865rem;
  color: rgba(255,255,255,0.7);
}
.pricing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(74,144,217,0.65);
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  max-width: 560px;
  margin: 0 auto;
}
.pricing-note a {
  color: #7ab3ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricing-note a:hover { opacity: 0.8; }

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Pricing Section backgrounds & effects ── */
.pricing-section {
  background: #080e1f;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.pricing-section .section-eyebrow { color: #7ab3ff; }
.pricing-section .section-title   { color: #fff; }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.55); }

/* Sparkle canvas */
.dpk-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(50% 50% at 50% 50%, white, transparent);
  -webkit-mask-image: radial-gradient(50% 50% at 50% 50%, white, transparent);
}

/* Grid overlay */
.dpk-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(58,58,58,0.03) 1px, transparent 1px);
  background-size: 70px 80px;
  mask-image: radial-gradient(50% 50% at 50% 0%, white, transparent 85%);
  -webkit-mask-image: radial-gradient(50% 50% at 50% 0%, white, transparent 85%);
}

/* Glow ring ellipses */
.dpk-ellipse-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  top: -114px;
  overflow: hidden;
}
.dpk-ellipse {
  position: absolute;
  left: -40%;
  right: -40%;
  top: -60px;
  height: 700px;
  border-radius: 50%;
  border: 120px solid #2a55b8;
  filter: blur(72px);
  opacity: 0.45;
}

/* Centre radial glow */
.pricing-bg-glow {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center top, rgba(42,85,184,0.35) 0%, transparent 65%);
}

/* ── dpk header ── */
.dpk-header { position: relative; z-index: 10; }

/* ── Word reveal animation ── */
.dpk-word-reveal {
  overflow: visible;
}
.dpk-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.dpk-word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  filter: blur(6px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter    0.45s ease;
  transition-delay: calc(var(--wi, 0) * 0.08s + 0.05s);
}
.dpk-word-reveal.dpk-visible .dpk-word-inner {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0px);
}

/* ── Reveal items (eyebrow, subtitle, cards) ── */
.dpk-reveal-item {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition:
    opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter    0.5s ease;
  transition-delay: var(--dpk-delay, 0s);
}
.dpk-reveal-item.dpk-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

/* ── Diensten Pricing Cards (dpk) ── */
.dpk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dpk-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74,144,217,0.16);
  background: linear-gradient(145deg, #1a2744 0%, #141e38 100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
}
.dpk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(10,16,40,0.55), 0 0 0 1px rgba(74,144,217,0.28);
}
.dpk-card-popular {
  border-color: rgba(74,144,217,0.45);
  background: linear-gradient(145deg, #1e3060 0%, #1a2744 100%);
  box-shadow: 0 0 60px rgba(74,144,217,0.18), 0 8px 40px rgba(10,16,40,0.4);
}
.dpk-card-popular:hover {
  box-shadow: 0 0 80px rgba(74,144,217,0.28), 0 24px 64px rgba(10,16,40,0.5);
}

.dpk-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2a55b8, #4a90d9);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.dpk-inner { padding: 32px 26px; }

.dpk-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.dpk-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.dpk-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  line-height: 1;
}
.dpk-amount {
  font-size: 2.6rem;
  color: #ffffff;
}
.dpk-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.dpk-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 22px;
}

.dpk-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 26px;
  border: 1px solid transparent;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.2s cubic-bezier(0.4,0,0.2,1),
              background 0.2s cubic-bezier(0.4,0,0.2,1);
}
.dpk-btn:hover  { transform: translateY(-1px); }
.dpk-btn:active { transform: translateY(0); }
.dpk-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.dpk-btn-primary {
  background: linear-gradient(160deg, #4a90d9 0%, #2a55b8 100%);
  color: #fff;
  border-color: rgba(74,144,217,0.4);
  box-shadow: 0 4px 22px rgba(42,85,184,0.38);
}
.dpk-btn-primary:hover { box-shadow: 0 6px 30px rgba(42,85,184,0.55); }

.dpk-btn-outline {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.14);
}
.dpk-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.26);
}

.dpk-features { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
.dpk-features-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.dpk-features ul { display: flex; flex-direction: column; gap: 10px; }
.dpk-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.865rem;
  color: rgba(255,255,255,0.7);
}
.dpk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(74,144,217,0.65);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .dpk-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .fade-in.visible { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
