/* =============================================================================
   FLEX CARE PROFESSIONALS — Main Stylesheet
   Brand: #003479 (deep navy)  Accent: #06B6D4 (cyan)
   Fonts: Manrope (headings) + Inter (body)
   ============================================================================= */

:root {
  /* Brand */
  --brand: #003479;
  --brand-700: #002a63;
  --brand-500: #0A4FAE;
  --brand-300: #4F7BCC;
  --accent: #06B6D4;
  --accent-600: #0891B2;
  --accent-300: #67E8F9;

  /* Neutrals */
  --ink: #0F172A;
  --ink-soft: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --bg: #ffffff;
  --bg-tint: #F4F8FC;

  /* Effects */
  --ring: 0 0 0 4px rgba(6, 182, 212, .25);
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(15,23,42,.04);
  --shadow-md: 0 6px 16px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 48px rgba(0,52,121,.14), 0 8px 16px rgba(0,52,121,.08);
  --shadow-glow: 0 12px 40px rgba(6,182,212,.18);

  /* Motion */
  --ease: cubic-bezier(.19, 1, .22, 1);
  --duration: 1400ms;
  --stagger: 220ms;

  /* Layout */
  --container: 1280px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

/* ---------- Reset & base ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent-600); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.15;
}
h1 { font-weight: 800; font-size: clamp(36px, 5.4vw, 72px); }
h2 { font-weight: 700; font-size: clamp(28px, 3.6vw, 48px); }
h3 { font-weight: 700; font-size: clamp(22px, 2.2vw, 28px); }
h4 { font-weight: 700; font-size: 18px; }
p  { margin: 0 0 1em; color: var(--slate-700); }
.eyebrow {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
}

/* Container */
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--tinted { background: var(--bg-tint); }
.section--dark {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.85); }
.section--dark .eyebrow { color: var(--accent-300); }
.section--dark .eyebrow::before { background: var(--accent-300); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #002a63;
  box-shadow: 0 4px 14px rgba(6,182,212,.35);
}
.btn--primary:hover { background: var(--accent-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,52,121,.25);
}
.btn--brand:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--slate-300);
}
.btn--outline:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Sticky Nav ---------- */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
  background: rgba(255,255,255,.92);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.nav__logo img { height: 44px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0;
}
.nav__menu a {
  color: var(--ink-soft);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 8px 2px;
  transition: color .2s var(--ease);
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a.active { color: var(--brand); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--ink-soft);
}
.nav__phone:hover { color: var(--brand); }
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--slate-100);
  align-items: center; justify-content: center;
}
.nav__hamburger span { width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .25s var(--ease); }
.nav__hamburger span::before, .nav__hamburger span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); transition: transform .25s var(--ease);
}
.nav__hamburger span::before { top: -7px; }
.nav__hamburger span::after { top: 7px; }
.nav__hamburger.is-open span { background: transparent; }
.nav__hamburger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile {
    position: fixed; inset: 64px 0 0 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    padding: 32px 24px 120px;
    z-index: 999;
  }
  .nav__mobile.is-open { transform: translateX(0); }
  .nav__mobile ul { list-style: none; padding: 0; margin: 0 0 24px; }
  .nav__mobile a {
    display: block; padding: 16px 4px;
    border-bottom: 1px solid var(--slate-200);
    color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 18px;
  }
  .nav__mobile .btn { width: 100%; margin-top: 16px; }
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.hero__slide {
  grid-column: 1; grid-row: 1;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 112px) 0 clamp(64px, 9vw, 140px);
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transform-origin: center;
}
.hero__slide.is-active .hero__bg {
  animation: kenburns 8000ms var(--ease) both;
}
@keyframes kenburns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.12); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(6,182,212,.18), transparent 50%),
    linear-gradient(120deg, rgba(0,42,99,.92) 0%, rgba(0,52,121,.78) 45%, rgba(0,52,121,.55) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-300);
  padding: 8px 14px;
  border: 1px solid rgba(103,232,249,.4);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-300);
  box-shadow: 0 0 12px var(--accent-300);
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent-300); }
.hero__subline {
  font-size: clamp(17px, 1.6vw, 21px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero text + image reveals */
.hero__slide.is-active .reveal-text { animation: revealText var(--duration) var(--ease) both; }
.hero__slide.is-active .reveal-text--d1 { animation-delay: 80ms; }
.hero__slide.is-active .reveal-text--d2 { animation-delay: 240ms; }
.hero__slide.is-active .reveal-text--d3 { animation-delay: 380ms; }
.hero__slide.is-active .reveal-text--d4 { animation-delay: 520ms; }
@keyframes revealText {
  from { transform: translateX(-80px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.hero__slide.is-active .hero__bg {
  animation: kenburns 8000ms var(--ease) both, mask-reveal 1400ms var(--ease) both;
}
@keyframes mask-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* Hero pagination */
.hero__pager {
  position: absolute; left: 0; right: 0; bottom: 32px;
  display: flex; justify-content: center; gap: 10px; z-index: 3;
}
.hero__pager button {
  width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3);
  transition: background .3s var(--ease), width .3s var(--ease);
  padding: 0;
}
.hero__pager button.is-active { background: var(--accent); width: 64px; }

/* Scroll cue */
.hero__scroll {
  position: absolute; right: 24px; bottom: 32px; z-index: 3;
  color: rgba(255,255,255,.7); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll::after { content: ""; width: 1px; height: 36px; background: rgba(255,255,255,.4); }
@media (max-width: 768px) { .hero__scroll { display: none; } }

/* Hero SVG bg patterns (used inline as data URI alt) */
.hero__pattern {
  position: absolute; inset: 0; z-index: 1;
  opacity: .15; mix-blend-mode: screen;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0);
  background-size: 28px 28px;
}

/* ---------- Subpage hero (50vh) ---------- */
.subhero {
  position: relative;
  min-height: 50vh;
  display: grid; align-items: center;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0;
}
.subhero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: kenburns-soft 12s var(--ease) both;
}
@keyframes kenburns-soft {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.subhero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(0,42,99,.92), rgba(10,79,174,.7));
}
.subhero__pattern {
  position: absolute; inset: 0; z-index: 1; opacity: .12;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1px, transparent 0);
  background-size: 24px 24px;
}
.subhero__inner { position: relative; z-index: 2; max-width: 820px; }
.subhero h1 { color: #fff; margin-bottom: 14px; }
.subhero__subline { color: rgba(255,255,255,.85); font-size: 18px; max-width: 640px; }
.crumbs {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px;
  font-size: 13px; letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  font-family: 'Manrope', sans-serif; font-weight: 600;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }
.crumbs__sep { opacity: .5; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: #fff;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--brand);
}
.card__link:hover { color: var(--accent-600); gap: 10px; }

/* Service / Sector cards with image header */
.media-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-card:hover .media-card__img { transform: scale(1.06); }
.media-card__media {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
}
.media-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.media-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.media-card__body h3 { margin-bottom: 8px; }
.media-card__meta {
  font-size: 13px; color: var(--slate-500); margin-bottom: 12px;
  font-family: 'Manrope', sans-serif; font-weight: 600;
  letter-spacing: .04em;
}
.media-card__body p { font-size: 15px; flex: 1; }

/* Grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .grid--3, .grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--6 { grid-template-columns: 1fr; }
}

/* Two-column intro */
.duo {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.duo--reverse { grid-template-columns: 1fr 1.05fr; }
.duo--reverse .duo__media { order: -1; }
@media (max-width: 900px) {
  .duo, .duo--reverse { grid-template-columns: 1fr; }
  .duo--reverse .duo__media { order: 0; }
}
.duo__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-500) 100%);
  box-shadow: var(--shadow-lg);
}
.duo__media img { width: 100%; height: 100%; object-fit: cover; }

/* USP checklist */
.checklist { list-style: none; padding: 0; margin: 24px 0 32px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 16px;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600) 100%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/></svg>") center / contain no-repeat;
  border-radius: 6px;
  margin-top: 2px;
}

/* ---------- Why us — feature grid ---------- */
.feature {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.feature::before {
  content: ""; position: absolute; left: 28px; top: 0; width: 40px; height: 3px;
  background: var(--accent); border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(6,182,212,.10);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 15px; margin: 0; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker__track {
  display: flex; gap: 48px;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: -.01em;
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: 48px;
  flex-shrink: 0;
}
.ticker__item::after {
  content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}
@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Werkwijze (steps) ---------- */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 7%; right: 7%; top: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--slate-300) 0%, var(--accent) 50%, var(--slate-300) 100%);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--slate-200);
  display: grid; place-items: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px;
  color: var(--brand);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.step:hover .step__num { transform: scale(1.08); border-color: var(--accent); color: var(--accent-600); }
.step h4 { margin-bottom: 6px; }
.step p { font-size: 14px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before {
    left: 36px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--slate-300) 0%, var(--accent) 50%, var(--slate-300) 100%);
  }
  .step { display: grid; grid-template-columns: 72px 1fr; align-items: center; text-align: left; gap: 20px; }
  .step__num { margin: 0; }
}

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.review__stars { display: inline-flex; gap: 2px; color: var(--accent); }
.review__stars svg { width: 18px; height: 18px; }
.review__quote {
  font-size: 17px; line-height: 1.55; color: var(--ink);
  font-family: 'Manrope', sans-serif; font-weight: 500;
  margin: 0;
}
.review__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: grid; place-items: center;
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
}
.review__name { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--ink); font-size: 15px; }
.review__role { font-size: 13px; color: var(--slate-500); }

/* ---------- Form ---------- */
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; } }
.form-usp h2 { margin-bottom: 20px; }
.form-usp .checklist li { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 16px; }

.form {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink-soft); margin-bottom: 6px;
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  background: var(--slate-50);
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--ring);
}
.field textarea { min-height: 130px; resize: vertical; }
.field--full { grid-column: 1 / -1; }
.form .btn { justify-self: start; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--slate-500); margin-top: 4px; }

/* Radio group */
.radios { display: flex; gap: 10px; flex-wrap: wrap; }
.radios label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-pill);
  background: var(--slate-50);
  cursor: pointer;
  font-size: 14px; font-weight: 600;
  font-family: 'Manrope', sans-serif;
  transition: all .2s var(--ease);
}
.radios label:hover { border-color: var(--accent); }
.radios input { display: none; }
.radios input:checked + span { color: var(--brand); }
.radios input:checked ~ * + label, .radios label:has(input:checked) {
  background: var(--brand); color: #fff; border-color: var(--brand);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--slate-200);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--ink);
  text-align: left;
}
.faq__q:hover { color: var(--brand); }
.faq__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  color: var(--brand);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: transform .35s var(--ease); }
.faq__icon { position: relative; }
.faq__item.is-open .faq__icon { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__a-inner { padding: 0 4px 22px; color: var(--slate-700); font-size: 16px; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.18), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  border-radius: 0;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band h2 { color: #fff; max-width: 700px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 8px 0 0; max-width: 560px; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #061a39 0%, #03102a 100%);
  color: #cbd5e1;
  padding-top: 80px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand img { height: 50px; margin-bottom: 18px; }
.footer__brand p { color: rgba(203,213,225,.8); font-size: 14px; max-width: 320px; }
.footer h4 {
  color: #fff; font-size: 14px; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(203,213,225,.8); font-size: 14px; }
.footer a:hover { color: var(--accent-300); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer__contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-300); width: 16px; height: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px; color: rgba(203,213,225,.6);
}
.footer__bottom a { color: rgba(203,213,225,.7); }
.footer__bottom a:hover { color: var(--accent-300); }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- WhatsApp widget ---------- */
.wa-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9998;
}
.wa-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 14px 40px rgba(37,211,102,.55); }
.wa-btn svg { width: 30px; height: 30px; color: #fff; }
.wa-btn::before, .wa-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2s var(--ease) infinite;
}
.wa-btn::after { animation-delay: 1s; }
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-tooltip::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--ink);
}
.wa-widget:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@media (max-width: 768px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-btn { width: 56px; height: 56px; }
  .wa-tooltip { display: none; }
}

/* ---------- Language switcher ---------- */
.lang {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9998;
}
.lang__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lang__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.lang__flag { font-size: 16px; line-height: 1; }
.lang__menu {
  position: absolute;
  bottom: calc(100% + 10px); left: 0;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid; gap: 2px;
  min-width: 180px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.lang.is-open .lang__menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px;
  color: var(--ink); text-align: left;
  transition: background .2s var(--ease);
  width: 100%;
}
.lang__menu button:hover { background: var(--slate-100); }
.lang__menu button.is-active { background: var(--brand); color: #fff; }
@media (max-width: 768px) {
  .lang { bottom: 16px; left: 16px; }
}

/* ---------- Reveal animations on scroll ---------- */
.r-text, .r-img, .r-card {
  opacity: 0;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
  will-change: transform, opacity;
}
.r-text { transform: translateX(-80px); }
.r-img  { transform: translateX(80px); }
.r-card { transform: translateY(40px) scale(.96); }
.r-text.in-view, .r-img.in-view, .r-card.in-view {
  opacity: 1; transform: translate(0,0) scale(1);
}
.r-stagger > * { transition-delay: 0ms; }
.r-stagger > *:nth-child(1) { transition-delay: 0ms; }
.r-stagger > *:nth-child(2) { transition-delay: 220ms; }
.r-stagger > *:nth-child(3) { transition-delay: 440ms; }
.r-stagger > *:nth-child(4) { transition-delay: 660ms; }
.r-stagger > *:nth-child(5) { transition-delay: 880ms; }
.r-stagger > *:nth-child(6) { transition-delay: 1100ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .r-text, .r-img, .r-card { transform: none; opacity: 1; }
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.no-bullets { list-style: none; padding: 0; margin: 0; }
.divider { height: 1px; background: var(--slate-200); margin: 48px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(6,182,212,.12);
  color: var(--accent-600);
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase;
}
.tag--brand { background: rgba(0,52,121,.08); color: var(--brand); }

/* Tip thumb */
.article-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card__thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}
.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta {
  display: flex; gap: 14px;
  font-size: 12px; color: var(--slate-500);
  font-family: 'Manrope', sans-serif; font-weight: 600;
  margin-bottom: 12px;
}
.article-card h3 { font-size: 20px; margin-bottom: 8px; }
.article-card p { font-size: 14px; flex: 1; }

/* Map placeholder */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  aspect-ratio: 16/9;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Process (3 step) on dienst pages */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .process { grid-template-columns: 1fr; } }
.process__item {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: #fff;
  position: relative;
}
.process__num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.process__item h4 { font-size: 18px; margin-bottom: 6px; }
.process__item p { font-size: 14px; margin: 0; }

/* Sector tag pills */
.sector-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.meta-pill {
  background: var(--slate-100); color: var(--ink-soft);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-family: 'Manrope', sans-serif; font-weight: 600;
}

/* RTL support */
[dir="rtl"] .reveal-text { animation-name: revealTextRTL; }
@keyframes revealTextRTL {
  from { transform: translateX(80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
[dir="rtl"] .r-text { transform: translateX(80px); }
[dir="rtl"] .r-img { transform: translateX(-80px); }
[dir="rtl"] .nav__menu a.active::after { right: 0; left: 0; }
[dir="rtl"] .wa-widget { right: auto; left: 24px; }
[dir="rtl"] .lang { left: auto; right: 24px; }
[dir="rtl"] .lang__menu { left: auto; right: 0; }

/* Print + accessibility focus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Mobile padding tweaks */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .form { padding: 24px; }
  .card, .feature, .review { padding: 22px; }
  .nav__inner { padding: 10px 0; }
  .nav__logo img { height: 36px; }
}
