/* ================================================
   CONTI-NU BEDRIJFSONDERSTEUNING — Design System
   Warm Dutch Editorial Premium
   Fonts: DM Serif Display + DM Sans
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ────────────────────────────── */
:root {
  --orange:        #E87722;
  --orange-dark:   #C4611A;
  --orange-light:  #F5A558;
  --orange-pale:   #FDF0E3;
  --cream:         #FEF9F4;
  --cream-mid:     #F7EEE4;
  --cream-dark:    #EFE0CC;
  --brown:         #2A1808;
  --brown-mid:     #5A3B26;
  --brown-light:   #9A7360;
  --text:          #2A1808;
  --text-muted:    #806654;
  --border:        #E8D5C0;
  --white:         #FFFFFF;

  --sh-sm:  0 2px 12px rgba(42,24,8,.06);
  --sh:     0 4px 24px rgba(42,24,8,.09);
  --sh-md:  0 8px 40px rgba(42,24,8,.13);
  --sh-lg:  0 16px 64px rgba(42,24,8,.18);

  --r-xs:   6px;
  --r-sm:   10px;
  --r:      14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --font-d: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-b: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --t:      all 0.28s ease;
  --t-slow: all 0.5s ease;

  --max-w:     1200px;
  --nav-h:     76px;
}

/* ── Reset ────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t); }
ul, ol { list-style: none; }
button { font-family: var(--font-b); cursor: pointer; }

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

/* ── Typography ───────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-d);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem,   3.8vw, 3.2rem);  }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);    }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p  { line-height: 1.78; color: var(--text-muted); }
strong { font-weight: 600; color: var(--brown); }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Layout ───────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.section     { padding: 6rem 0; }
.section-sm  { padding: 4rem 0; }
.section-lg  { padding: 9rem 0; }

.section-dark {
  background: var(--brown);
}
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.68); }

.section-cream { background: var(--cream-mid); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Section Header ───────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; max-width: 640px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.eyebrow-light { color: var(--orange-light); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.9rem;
  font-family: var(--font-b); font-size: .92rem; font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,119,34,.38);
}
.btn-outline {
  background: transparent; color: var(--brown); border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--orange); color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--orange); border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.28);
}
.btn-white-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.55);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.1); border-color: var(--white);
}
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1rem; }

/* ── Navigation ───────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .35s ease, height .35s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  height: calc(var(--nav-h) - 10px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: .7rem; }
.nav-logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name { font-family: var(--font-d); font-size: 1.2rem; color: var(--brown); }
.nav-logo-sub  { font-size: .65rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-link {
  padding: .5rem .85rem;
  font-size: .875rem; font-weight: 500;
  color: var(--brown-mid);
  border-radius: var(--r-full);
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: var(--orange-pale); }
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem;
  border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 23px; height: 2px;
  background: var(--brown); border-radius: 2px; transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
  flex-direction: column; gap: .5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.25rem; padding: .7rem 1rem; }
.mobile-menu .btn { margin-top: 1.25rem; justify-content: center; }

/* ── Page Hero ────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 5.5rem;
  background: var(--brown);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,119,34,.22) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}
.page-hero .eyebrow { color: var(--orange-light); margin-bottom: .75rem; }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .lead { color: rgba(255,255,255,.68); max-width: 600px; margin-top: 1.25rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin-top: 2rem; font-size: .82rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: rgba(255,255,255,.85); font-weight: 500; }

/* ── Card ─────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--t);
}
.card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 50px; height: 50px; border-radius: var(--r);
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1.25rem; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }

/* ── Hero (homepage) ──────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--brown);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(232,119,34,.22) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 78%, rgba(232,119,34,.08) 0%, transparent 48%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 5rem 1.5rem 6.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center;
}
.hero-content .eyebrow { color: var(--orange-light); opacity:0; animation: fsUp .6s ease .18s forwards; }

.hero-title {
  color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; animation: fsUp .65s ease .32s forwards;
}
.hero-title em { font-style: italic; color: var(--orange-light); }

.hero-text {
  color: rgba(255,255,255,.7); font-size: 1.08rem;
  max-width: 520px; margin-bottom: 2.5rem;
  opacity: 0; animation: fsUp .65s ease .48s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fsUp .65s ease .64s forwards;
}

/* Hero card (quote) */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 2.5rem; backdrop-filter: blur(12px);
  opacity: 0; animation: fsIn .7s ease .82s forwards;
}
.hero-card-quote {
  font-family: var(--font-d); font-style: italic; font-size: 1.18rem;
  color: rgba(255,255,255,.92); line-height: 1.65; margin-bottom: 1.75rem;
}
.hero-card-quote::before { content: '\201C'; color: var(--orange-light); font-size: 1.4em; line-height: 0; vertical-align: -.2em; margin-right: .1em; }
.hero-card-author { display: flex; align-items: center; gap: 1rem; }
.hero-card-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1rem; color: var(--white);
  flex-shrink: 0; overflow: hidden;
}
.hero-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-name { font-size: .88rem; font-weight: 600; color: var(--white); line-height: 1.4; }
.hero-card-role { font-size: .78rem; color: rgba(255,255,255,.52); line-height: 1.4; }

/* ── Stats bar ────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-bar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 0 2rem; border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; padding-right: 0; }
.stat-number {
  font-family: var(--font-d); font-size: 2.6rem;
  color: var(--orange); line-height: 1; margin-bottom: .35rem;
}
.stat-label { font-size: .82rem; font-weight: 500; color: var(--text-muted); }

/* ── About home ───────────────────────────────── */
.about-home {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5.5rem; align-items: center;
}
.about-img-wrap {
  position: relative;
  padding-bottom: 3rem; padding-right: 3rem;
}
.about-img-wrap .img-frame {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--cream-dark);
  box-shadow: var(--sh-md);
}
.about-img-wrap .img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-img-badge {
  position: absolute; bottom: -2rem; right: -2rem; z-index: 2;
  background: var(--orange); color: var(--white);
  border-radius: var(--r-lg); padding: 2.25rem 2.5rem;
  box-shadow: var(--sh-lg); width: 280px; word-break: break-word;
}
.badge-number { font-family: var(--font-d); font-size: 1.7rem; line-height: 1.2; margin-bottom: .5rem; }
.badge-text   { font-size: 1.1rem; font-weight: 600; font-style: italic; opacity: .95; line-height: 1.4; }

.about-home-content { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── Service cards (homepage preview) ──────────── */
.service-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: var(--t); display: flex; flex-direction: column; gap: .9rem;
}
.service-card:hover {
  border-color: var(--orange); box-shadow: var(--sh-md); transform: translateY(-4px);
}
.service-num {
  font-family: var(--font-d); font-size: 2.8rem; color: var(--cream-dark);
  line-height: 1; transition: var(--t);
}
.service-card:hover .service-num { color: var(--orange-light); }
.service-card h3,
.service-card h4 { color: var(--brown); margin: 0; font-size: 1.1rem; font-family: var(--font-b); font-weight: 600; }
.service-card p  { font-size: .875rem; margin: 0; }

/* ── Logos grid ───────────────────────────────── */
.logos-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 1.25rem; align-items: center;
}
.logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; height: 68px;
  border-radius: var(--r); background: var(--white);
  border: 1px solid var(--border); transition: var(--t);
  font-size: .78rem; font-weight: 600; color: var(--text-muted); text-align: center;
}
.logo-item img { max-height: 34px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: var(--t); }
.logo-item:hover { border-color: var(--orange-light); box-shadow: var(--sh-sm); }
.logo-item:hover img { filter: none; opacity: 1; }

/* ── Testimonials ─────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }

.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: var(--t);
}
.testimonial:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.testimonial-open-quote {
  font-size: 3.5rem; line-height: 1; color: var(--orange);
  font-family: Georgia, serif; margin-bottom: -.5rem;
}
.testimonial-text { font-size: .93rem; line-height: 1.8; color: var(--text-muted); flex: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.1rem;
  flex-shrink: 0; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: .88rem; font-weight: 700; color: var(--brown); line-height: 1.4; }
.testimonial-role { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

/* ── CTA section ──────────────────────────────── */
.cta-section {
  background: var(--brown); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(232,119,34,.24) 0%, transparent 58%);
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center; padding: 7rem 1.5rem;
}
.cta-inner h2   { color: var(--white); margin-bottom: 1rem; }
.cta-inner p    { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-actions    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Werkwijze steps ──────────────────────────── */
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: grid; grid-template-columns: 88px 1fr; gap: 2rem;
  padding: 3.25rem 0; border-bottom: 1px solid var(--border);
  align-items: start; transition: var(--t);
}
.step-item:last-child { border-bottom: none; }
.step-item:hover { padding-left: .5rem; }
.step-num {
  font-family: var(--font-d); font-size: 4.5rem;
  color: var(--cream-dark); line-height: 1; transition: var(--t);
}
.step-item:hover .step-num { color: var(--orange-light); }
.step-body h3 { margin-bottom: .75rem; }
.step-body p  { max-width: 620px; }

/* ── Diensten page ────────────────────────────── */
.dienst-block { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.dienst-block:last-child { border-bottom: none; }
.dienst-block-header { margin-bottom: 2.5rem; }
.dienst-block-title-row {
  display: flex; align-items: baseline; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.dienst-block-badge {
  display: inline-block; padding: .3rem .9rem;
  background: var(--orange-pale); color: var(--orange);
  border-radius: var(--r-full); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.dienst-items {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 2rem;
}
.dienst-item { display: flex; flex-direction: column; gap: .75rem; }
.dienst-item-num {
  font-family: var(--font-d); font-size: 2rem; color: var(--orange); line-height: 1;
}
.dienst-item h4 { color: var(--brown); }
.dienst-item p  { font-size: .875rem; }

/* Software tags */
.software-categories { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.software-category {}
.software-cat-title {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brown); margin-bottom: .75rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--orange-pale);
}
.software-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.software-tag {
  display: inline-block; padding: .35rem .9rem;
  border-radius: var(--r-full);
  background: var(--white); border: 1.5px solid var(--border);
  font-size: .8rem; font-weight: 500; color: var(--brown-mid);
  transition: var(--t);
}
.software-tag:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

/* ── About / Over page ────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5.5rem; align-items: start;
}
.about-photo { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-photo .img-frame {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 3/4; background: var(--cream-dark);
  box-shadow: var(--sh-md);
}
.about-photo .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-content { display: flex; flex-direction: column; gap: 2rem; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem;
  text-align: center; transition: var(--t);
}
.team-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.5rem;
  margin: 0 auto 1rem; overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-d); font-size: 1.1rem; color: var(--brown); margin-bottom: .25rem; }
.team-role { font-size: .8rem; color: var(--text-muted); }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: .8rem; }
.check-item { display: flex; gap: .75rem; align-items: flex-start; }
.check-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .18rem;
}
.check-dot svg { width: 11px; height: 11px; }
.check-item span { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }

/* ── Contact page ─────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5.5rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; position: sticky; top: calc(var(--nav-h) + 2rem); }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.contact-info-value { font-size: .97rem; font-weight: 500; color: var(--brown); }
.contact-info-value a:hover { color: var(--orange); }

/* Form */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .82rem; font-weight: 700; color: var(--brown); letter-spacing: .02em; }
.form-label .req { color: var(--orange); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--cream); font-family: var(--font-b); font-size: .93rem;
  color: var(--text); transition: var(--t); outline: none; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,119,34,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #C4B0A0; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-honey { display: none; }
.form-submit { margin-top: .5rem; }

/* ── News page ────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.news-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column; transition: var(--t);
}
.news-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: var(--orange-light); }
.news-card-img { aspect-ratio: 16/9; background: var(--cream-dark); overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.news-card-cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.news-card h3 { color: var(--brown); font-size: 1.35rem; transition: var(--t); }
.news-card:hover h3 { color: var(--orange); }
.news-card p { font-size: .9rem; flex: 1; }
.news-card-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 700; color: var(--orange); margin-top: .5rem;
}
.news-card-cta svg { width: 15px; height: 15px; transition: var(--t); }
.news-card:hover .news-card-cta svg { transform: translateX(4px); }

/* Article page */
.article-content { max-width: 700px; margin: 0 auto; }
.article-content h2, .article-content h3 { margin-top: 2rem; margin-bottom: .75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content ul li { color: var(--text-muted); margin-bottom: .4rem; }

/* ── Footer ───────────────────────────────────── */
.footer { background: var(--brown); padding: 5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo { display: flex; align-items: center; gap: .7rem; }
.footer-logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-d); font-size: 1.2rem; font-style: italic;
  flex-shrink: 0;
}
.footer-logo-name { font-family: var(--font-d); font-size: 1.15rem; color: var(--white); line-height: 1.15; }
.footer-logo-sub  { font-size: .62rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--orange-light); }
.footer-brand p { color: rgba(255,255,255,.56); font-size: .88rem; max-width: 280px; line-height: 1.75; }
.footer-social { display: flex; gap: .7rem; margin-top: .25rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); transition: var(--t);
}
.footer-social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col-title { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-link { font-size: .88rem; color: rgba(255,255,255,.65); transition: var(--t); }
.footer-link:hover { color: var(--orange-light); }
.footer-contact-row { display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; }
.footer-contact-row svg { width: 15px; height: 15px; color: var(--orange-light); flex-shrink: 0; }
.footer-contact-row a { font-size: .88rem; color: rgba(255,255,255,.65); transition: var(--t); }
.footer-contact-row a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.75rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom-copy { font-size: .8rem; color: rgba(255,255,255,.38); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.38); transition: var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ── Back to top ──────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); cursor: pointer;
  opacity: 0; transform: translateY(16px); transition: var(--t);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px) !important; }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Scroll animations ────────────────────────── */
.aos {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos.d1 { transition-delay: .1s; }
.aos.d2 { transition-delay: .2s; }
.aos.d3 { transition-delay: .3s; }
.aos.d4 { transition-delay: .4s; }
.aos.d5 { transition-delay: .5s; }
.aos.visible { opacity: 1; transform: translateY(0); }

/* ── Keyframes ────────────────────────────────── */
@keyframes fsUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fsIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0);    }
}

/* ── Utilities ────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.highlight { color: var(--orange); }
.mt-sm  { margin-top: 1rem; }
.mt-md  { margin-top: 2rem; }
.mt-lg  { margin-top: 3rem; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }
.mb-lg  { margin-bottom: 3rem; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .about-home { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 380px; }
  .logos-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { position: static; max-width: 360px; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-preview-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid  { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .step-item { grid-template-columns: 1fr; gap: .75rem; }
  .step-num  { font-size: 2.8rem; }
  .dienst-items { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr 1fr; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-inner { padding: 3.5rem 1.5rem 5rem; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 6rem 0; }
}
@media (max-width: 480px) {
  .logos-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid  { grid-template-columns: 1fr; }
}

/* ── Privacy / Prose ──────────────────────────── */
.privacy-content {
  max-width: 780px;
}
.privacy-content h2 {
  margin-top: 3rem;
  margin-bottom: .75rem;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.privacy-content > p,
.privacy-content > address {
  margin-bottom: 1rem;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content ul li {
  margin-bottom: .4rem;
  color: var(--text-muted);
}
.privacy-content address {
  font-style: normal;
  background: var(--orange-pale);
  border-left: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 1rem;
}
.privacy-content address a,
.privacy-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════════════
   ANIMATION ENHANCEMENTS
   ══════════════════════════════════════════════════ */

/* ── Page enter ───────────────────────────────── */
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageEnter .4s ease both; }

/* ── Hero orb pulse ───────────────────────────── */
@keyframes heroPulse {
  0%, 100% { opacity: 1;  transform: scale(1);    }
  50%       { opacity: .6; transform: scale(1.12); }
}
.hero-bg { animation: heroPulse 9s ease-in-out infinite; }

/* ── Ambient glow pulse (page-hero & CTA) ─────── */
@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}
.page-hero::before    { animation: glowPulse 10s ease-in-out infinite; }
.cta-section::before  { animation: glowPulse  7s ease-in-out infinite; }

/* ── AOS — slide from left ────────────────────── */
.aos-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}
.aos-left.d1 { transition-delay: .1s; }
.aos-left.d2 { transition-delay: .2s; }
.aos-left.d3 { transition-delay: .3s; }
.aos-left.d4 { transition-delay: .4s; }
.aos-left.d5 { transition-delay: .5s; }
.aos-left.visible { opacity: 1; transform: none; }

/* ── AOS — slide from right ───────────────────── */
.aos-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.aos-right.d1 { transition-delay: .1s; }
.aos-right.d2 { transition-delay: .2s; }
.aos-right.d3 { transition-delay: .3s; }
.aos-right.d4 { transition-delay: .4s; }
.aos-right.d5 { transition-delay: .5s; }
.aos-right.visible { opacity: 1; transform: none; }

/* ── AOS — scale up ───────────────────────────── */
.aos-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .6s ease, transform .6s ease;
}
.aos-scale.d1 { transition-delay: .1s; }
.aos-scale.d2 { transition-delay: .2s; }
.aos-scale.d3 { transition-delay: .3s; }
.aos-scale.d4 { transition-delay: .4s; }
.aos-scale.d5 { transition-delay: .5s; }
.aos-scale.visible { opacity: 1; transform: none; }

/* ── Button shimmer ───────────────────────────── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-primary:hover::after { animation: shimmer .55s ease forwards; }
@keyframes shimmer { to { left: 150%; } }

/* ── Mobile menu slide ────────────────────────── */
.mobile-menu {
  display: flex;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s .38s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s;
}

/* ── Stat number pop ──────────────────────────── */
@keyframes statPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.stat-number.counted { animation: statPop .4s ease; }
