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

/* ═══ RESET & BASE ═══ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  color: #1d1d1f;
  background: #fff;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: #06c; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 980px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 680px; margin: 0 auto; padding: 0 22px; }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251,251,253,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 48px;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  font-weight: 700;
  font-size: 1.05em;
  color: #1d1d1f;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand span { color: #06c; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.82em;
  font-weight: 400;
  color: #1d1d1f;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #06c; text-decoration: none; }
.nav-links a.active { color: #06c; font-weight: 500; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 22px; height: 22px; stroke: #1d1d1f; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ═══ HERO ═══ */
.hero {
  padding: 120px 22px 64px;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #f2f2f7 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,122,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.78em;
  font-weight: 600;
  color: #86868b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #1d1d1f;
  margin-bottom: 20px;
  position: relative;
  text-wrap: balance;
}
.hero .subtitle {
  font-size: 1.3em;
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.4;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.hero .hero-cta {
  margin-top: 32px;
  position: relative;
}

/* ═══ SECTIONS ═══ */
section { padding: 80px 22px; }
.bg-white { background: #fff; }
.bg-light { background: #f5f5f7; }

h2 {
  font-size: 2.8em;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 12px;
  text-wrap: balance;
}
.section-headline {
  text-align: center;
  margin-bottom: 48px;
}
.section-headline p {
  font-size: 1.1em;
  color: #86868b;
  max-width: 540px;
  margin: 8px auto 0;
  line-height: 1.47;
}
h3 { font-size: 1.15em; font-weight: 600; color: #1d1d1f; margin-bottom: 6px; }
p { color: #6e6e73; line-height: 1.58; margin-bottom: 14px; }
.bold-text { font-weight: 600; color: #1d1d1f; }

/* ═══ GLASS CARDS ═══ */
.glass {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
}
.bg-white .glass {
  background: rgba(245,245,247,0.65);
  border-color: rgba(210,210,215,0.4);
}

/* ═══ ICONS ═══ */
.icon { display: inline-block; vertical-align: middle; }
.icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: #06c;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm svg { width: 24px; height: 24px; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  color: #fff;
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  border: 1.5px solid #06c;
  background: #06c;
  box-shadow: 0 4px 14px rgba(0,102,204,0.25);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: #0077ed;
  border-color: #0077ed;
  box-shadow: 0 6px 20px rgba(0,102,204,0.35);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  display: inline-block;
  color: #06c;
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  border: 1.5px solid #06c;
  background: transparent;
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(0,102,204,0.06);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ═══ PILLARS (3 col) ═══ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pillar {
  text-align: center;
  padding: 36px 24px;
}
.pillar .icon { margin-bottom: 14px; }
.pillar strong {
  display: block;
  font-size: 1em;
  color: #1d1d1f;
  margin-bottom: 6px;
}
.pillar span { font-size: 0.88em; color: #86868b; line-height: 1.47; }

/* ═══ FEATURE CARDS (2 col) ═══ */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}
.feature-card .icon { margin-bottom: 12px; }
.feature-label { font-weight: 600; color: #1d1d1f; font-size: 0.95em; margin-bottom: 6px; }
.feature-desc { color: #6e6e73; font-size: 0.9em; margin: 0; line-height: 1.52; }

/* ═══ PRODUCT SHOWCASE ═══ */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 40px;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.bg-white .product-card { background: #f5f5f7; }
.product-card .img-wrap {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.product-card img {
  max-width: 75%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.03); }
.product-card h3 { font-size: 1.5em; font-weight: 700; margin-bottom: 4px; }
.product-sub { font-size: 0.88em; color: #86868b; margin-bottom: 12px; }
.product-specs { font-size: 0.82em; color: #86868b; line-height: 1.65; margin-bottom: 0; }
.products-3 { grid-template-columns: repeat(3, 1fr); }
.img-wrap-stack {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.img-wrap-stack img {
  max-width: 75%;
  max-height: 130px;
}

/* ═══ PRICING CARDS ═══ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.pricing-card {
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}
.pricing-name {
  font-size: 0.78em;
  font-weight: 600;
  color: #06c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pricing-fte {
  font-size: 0.88em;
  color: #86868b;
  margin-bottom: 16px;
}
.pricing-price {
  font-size: 2em;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pricing-price span {
  font-size: 0.42em;
  font-weight: 400;
  color: #86868b;
}
.pricing-details {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(210,210,215,0.4);
}
.pricing-details li {
  font-size: 0.82em;
  color: #6e6e73;
  padding: 5px 0;
  line-height: 1.5;
}

/* ═══ TABLES ═══ */
.table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(210,210,215,0.6);
  position: relative;
}
.glass-table {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
table { width: 100%; border-collapse: collapse; }
thead th {
  background: rgba(245,245,247,0.8);
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.8em;
  padding: 12px 18px;
  text-align: left;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(210,210,215,0.5);
}
tbody td {
  padding: 13px 18px;
  font-size: 0.88em;
  border-bottom: 1px solid rgba(232,232,237,0.7);
  color: #1d1d1f;
}
tbody tr:last-child td { border-bottom: none; }
.row-label { font-weight: 600; }
.cloud-col { color: #86868b; }
.local-col { color: #1d1d1f; font-weight: 500; }
.totaal-col { font-weight: 700; color: #1d1d1f; }

/* ═══ NOTES & CALLOUTS ═══ */
.note { font-size: 0.76em; color: #86868b; margin-top: 16px; line-height: 1.58; }
.callout {
  margin: 24px 0 8px;
  padding: 22px 26px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,102,204,0.06) 0%, rgba(0,102,204,0.03) 100%);
  border-left: 3px solid #06c;
  color: #1d1d1f;
  font-size: 1.02em;
  line-height: 1.5;
  font-weight: 500;
}

/* ═══ BULLETS ═══ */
.bullets { margin: 16px 0 24px; }
.bullets li {
  padding: 5px 0 5px 22px;
  color: #6e6e73;
  list-style: none;
  position: relative;
  font-size: 1em;
  line-height: 1.58;
}
.bullets li::before {
  content: '';
  position: absolute; left: 0; top: 0.72em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #06c;
}

/* ═══ SERVICE BLOCKS ═══ */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.service-block {
  border-radius: 20px;
  padding: 28px 24px;
}
.service-block .icon { margin-bottom: 12px; }
.service-block h3 { margin-bottom: 6px; }
.service-block p { margin-bottom: 0; font-size: 0.93em; }

/* ═══ FUTURE BLOCK ═══ */
.future-block {
  margin-top: 56px;
  padding: 44px 32px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}
.bg-white .future-block { background: #f5f5f7; }
.future-block .icon { margin-bottom: 14px; }
.future-block h3 { font-size: 1.4em; font-weight: 700; margin-bottom: 8px; }
.future-block p { margin-bottom: 0; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ═══ CTA SECTION ═══ */
.cta {
  background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ed 100%);
  padding: 80px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,122,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 { margin-bottom: 12px; position: relative; }
.cta p { font-size: 1.1em; max-width: 560px; margin: 0 auto 28px; position: relative; }

/* ═══ FOOTER ═══ */
footer {
  text-align: center;
  padding: 20px 22px;
  color: #86868b;
  font-size: 0.78em;
  border-top: 1px solid #d2d2d7;
}
footer a { color: #86868b; }
footer a:hover { color: #06c; }

/* ═══ BLOG STYLES ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.blog-card {
  padding: 32px 28px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
  text-decoration: none;
}
.blog-card .blog-tag {
  font-size: 0.72em;
  font-weight: 600;
  color: #06c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  line-height: 1.25;
}
.blog-card p {
  font-size: 0.88em;
  color: #86868b;
  margin-bottom: 12px;
  line-height: 1.52;
  flex: 1;
}
.blog-card .blog-meta {
  font-size: 0.76em;
  color: #aeaeb2;
}
.blog-card.featured {
  grid-column: 1 / -1;
  padding: 44px 36px;
}
.blog-card.featured h3 {
  font-size: 1.6em;
}

/* Blog post (article) */
.article-header {
  padding: 120px 22px 48px;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}
.article-header .blog-tag {
  font-size: 0.78em;
  font-weight: 600;
  color: #06c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 16px;
  text-wrap: balance;
}
.article-header .article-meta {
  font-size: 0.88em;
  color: #86868b;
}
.article-body {
  padding: 48px 22px 80px;
}
.article-body h2 {
  font-size: 1.8em;
  margin-top: 48px;
  margin-bottom: 16px;
}
.article-body h3 {
  font-size: 1.25em;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1d1d1f;
}
.article-body .callout {
  margin: 32px 0;
}

/* ═══ PAGE HEADERS (over-ons, contact) ═══ */
.page-header {
  padding: 120px 22px 48px;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #f2f2f7 100%);
}
.page-header h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 14px;
}
.page-header p {
  font-size: 1.15em;
  color: #86868b;
  max-width: 540px;
  margin: 0 auto;
}

/* ═══ TIMELINE ═══ */
.timeline {
  margin: 40px 0;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(0,102,204,0.2);
  border-radius: 1px;
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #06c;
}
.timeline-item h3 { font-size: 1.05em; margin-bottom: 4px; }
.timeline-item p { margin-bottom: 0; }

/* ═══ CONTACT FORM ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85em;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95em;
  font-family: inherit;
  border: 1px solid rgba(210,210,215,0.6);
  border-radius: 12px;
  background: #fff;
  color: #1d1d1f;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #06c;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-block { padding: 32px 0; }
.contact-info-block h3 { font-size: 1.2em; margin-bottom: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-item .icon svg { width: 20px; height: 20px; }
.contact-item span { font-size: 0.95em; color: #1d1d1f; }
.contact-item a { color: #1d1d1f; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.8em; }
  .article-header h1 { font-size: 2.2em; }
  .products-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 92px 22px 48px; }
  .hero h1 { font-size: 2.4em; }
  h2 { font-size: 2em; }
  section { padding: 60px 22px; }
  .features { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; gap: 16px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr !important; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 520px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(251,251,253,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 22px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-toggle { display: block; }
}
@media (max-width: 480px) {
  .hero { padding: 76px 16px 40px; }
  .hero h1 { font-size: 2.05em; }
  .container, .narrow { padding: 0 16px; }
  section { padding: 48px 16px; }
  h2 { font-size: 1.65em; }
  .feature-card { padding: 22px 18px; }
  .product-card { padding: 36px 16px 28px; }
  .pricing-cards { grid-template-columns: 1fr; }
  table { min-width: 440px; }
  .cta { padding: 56px 16px; }
  .article-header h1 { font-size: 1.8em; }
  .page-header h1 { font-size: 2em; }
  .dienst-hero h1 { font-size: 2em; }
}

/* ═══ EXTRA: classes used by generated HTML ═══ */

/* Eyebrow text */
.eyebrow {
  font-size: 0.78em;
  font-weight: 600;
  color: #86868b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* .section as alias for <section> padding */
.section { padding: 80px 22px; }
.section-alt { background: #f5f5f7; }

/* Container narrow alias */
.container-narrow { max-width: 680px; margin: 0 auto; padding: 0 22px; }

/* Grid layouts */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Card base (used by agents) */
.card {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}
.section-alt .card,
.bg-light .card {
  background: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.7);
}
.bg-white .card,
section:not(.bg-light):not(.section-alt) .card {
  background: rgba(245,245,247,0.65);
  border-color: rgba(210,210,215,0.4);
}

/* Glass card alias */
.glass-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}

/* Card icon */
.card-icon {
  margin-bottom: 14px;
}
.card-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: #06c;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card link */
.card-link {
  font-size: 0.88em;
  font-weight: 500;
  color: #06c;
}

/* Problem list */
.problem-list { margin-top: 32px; }
.problem-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(210,210,215,0.4);
}
.problem-item:last-child { border-bottom: none; }
.problem-item h3 { margin-bottom: 8px; }
.problem-item p { margin-bottom: 0; font-size: 1.05em; line-height: 1.6; }

/* Dienst card (link cards) */
a.dienst-card, .dienst-card {
  text-decoration: none;
  display: block;
}
a.dienst-card:hover { text-decoration: none; }
.dienst-card h3 { color: #1d1d1f; }
.dienst-card p { font-size: 0.9em; }

/* Product card (agent variant) */
.product-card .product-img {
  max-width: 75%;
  max-height: 280px;
  height: auto;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.03); }

/* Glass table wrap alias */
.glass-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(210,210,215,0.6);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* CTA section alias */
.cta-section {
  background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ed 100%);
  padding: 80px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,122,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 12px; position: relative; }
.cta-section p,
.cta-section .subtitle { font-size: 1.1em; max-width: 560px; margin: 0 auto 28px; position: relative; color: #6e6e73; }
.cta-section .btn { position: relative; }

/* .btn alias for .btn-primary */
.btn {
  display: inline-block;
  color: #fff;
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05em;
  border: 1.5px solid #06c;
  background: #06c;
  box-shadow: 0 4px 14px rgba(0,102,204,0.25);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover {
  background: #0077ed;
  border-color: #0077ed;
  box-shadow: 0 6px 20px rgba(0,102,204,0.35);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* Footer (agent variant with inner layout) */
.footer {
  text-align: left;
  padding: 20px 22px;
  color: #86868b;
  font-size: 0.78em;
  border-top: 1px solid #d2d2d7;
}
.footer a { color: #86868b; }
.footer a:hover { color: #06c; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
.footer-brand .nav-brand { font-size: 1.2em; }
.footer-brand p { font-size: 1em; color: #86868b; margin-top: 4px; }
.footer-contact { text-align: right; margin-left: auto; }
.footer-contact p { margin-bottom: 4px; }
.footer-contact a { color: #86868b; }
.footer-contact a:hover { color: #06c; }

/* Case cards */
.case-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.case-card {
  padding: 40px 36px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.case-card .case-header {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.case-card .case-header h3 { font-size: 1.3em; margin-bottom: 4px; }
.case-card .case-header .case-meta { font-size: 0.82em; color: #86868b; }
.case-card .case-section h4 {
  font-size: 0.72em;
  font-weight: 600;
  color: #06c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.case-card .case-section p { font-size: 0.93em; margin-bottom: 0; }

/* Dienst hero */
.dienst-hero {
  padding: 120px 22px 56px;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd 0%, #f2f2f7 100%);
  position: relative;
  overflow: hidden;
}
.dienst-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,122,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.dienst-hero .icon, .dienst-hero .card-icon {
  margin-bottom: 16px;
  position: relative;
}
.dienst-hero .icon svg, .dienst-hero .card-icon svg { width: 48px; height: 48px; }
.dienst-hero h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 16px;
  position: relative;
}
.dienst-hero p {
  font-size: 1.2em;
  color: #86868b;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* Dienst cards container */
.dienst-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Subtitle class used in hero/sections */
.subtitle {
  font-size: 1.1em;
  color: #6e6e73;
  line-height: 1.47;
}

/* Row label in tables */
.row-label { font-weight: 600; }
.totaal-col { font-weight: 700; color: #1d1d1f; }

/* Responsive additions */
@media (max-width: 768px) {
  .grid-2, .grid-3, .dienst-cards { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .footer-contact { display: none; }
  .dienst-hero h1 { font-size: 2.2em; }
}
@media (max-width: 480px) {
  .dienst-hero { padding: 76px 16px 40px; }
  .dienst-hero h1 { font-size: 1.8em; }
}
