*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #0071E3;
  --blue-mid:     #0058B0;
  --blue-light:   #E8F2FE;
  --blue-bright:  #2997FF;
  --bg:           #FFFFFF;
  --bg-gray:      #F9FAFB;
  --border:       #E5E7EB;
  --text:         #0F172A;
  --text-2:       #334155;
  --text-3:       #64748B;
  --radius:       10px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* ─── PROMO BANNER ─── */
.promo-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2px;
}
.promo-bar strong { font-weight: 700; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav-logo-text strong {
  font-weight: 800;
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
/* ─── HAMBURGER ─── */
.nav-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: background .15s;
}
.nav-burger:hover { background: var(--bg-gray); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 64px;
  right: 0;
  width: 280px;
  height: calc(100vh - 64px);
  background: #fff;
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(0.22,1,0.36,1);
  z-index: 99;
  padding: 24px 20px;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-links a {
  display: block;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-drawer-links a:hover { background: var(--bg-gray); color: var(--blue); }
.nav-drawer-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-drawer-links .nav-cta {
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}
.nav-drawer-links .nav-cta:hover { background: var(--blue-mid) !important; }

/* hide old nav-links (in case any remain) */
.nav-links { display: none; }
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 72px;
  text-align: center;
}
.page-hero .hero-badge {
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.page-hero p {
  font-size: 17px;
  color: var(--text-3);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── HERO (homepage) ─── */
.hero {
  background:
    linear-gradient(rgba(10,20,40,0.62), rgba(10,20,40,0.52)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80') center/cover no-repeat;
  border-bottom: none;
  padding: 100px 24px 108px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: #60A5FA;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-greeter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 22px 8px 8px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow);
  text-align: left;
  max-width: 100%;
}
.greeter-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.greeter-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.greeter-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.greeter-text span {
  font-size: 12px;
  color: var(--text-3);
}
.hero-search {
  display: flex;
  max-width: 540px;
  margin: 0 auto 28px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s;
}
.hero-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.12);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}
.hero-search input::placeholder { color: var(--text-3); }
.hero-search button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-search button:hover { background: var(--blue-mid); }
.hero-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ─── HERO FORM ─── */
.hero-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hero-form-row {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 6px;
}
.hero-form-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  min-width: 0;
}
.hero-form-row input::placeholder { color: rgba(255,255,255,0.55); }
.hero-form-row button {
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.hero-form-row button:hover {
  background: #E8F2FE;
  transform: translateY(-1px);
}
.hero-form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 600px) {
  .hero-form-row { flex-direction: column; border-radius: 12px; }
  .hero-form-row button { border-radius: 8px; justify-content: center; }
}

/* ─── STATS ─── */
.stats {
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.stat {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── SECTION ─── */
.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 8px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-3);
  max-width: 480px;
}

/* ─── SERVICE CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: #d1d5db;
}
.card-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* Larger card variant for diensten page */
.card-large {
  padding: 32px 28px;
}
.card-large h3 { font-size: 17px; margin-bottom: 10px; }
.card-large p  { font-size: 14px; margin-bottom: 18px; }
.card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--blue);
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}
.step-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
}
.step-number {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ─── SPECIALISTS ─── */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .specialists-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
}
.specialist-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.specialist-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: #d1d5db;
}
.specialist-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 3px solid var(--blue-light);
}
.specialist-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.specialist-tag {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.specialist-quote {
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 2.6em;
}
.specialist-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─── DIVIDER ─── */
.section-divider {
  height: 1px;
  background: var(--border);
  max-width: 1060px;
  margin: 0 auto;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--blue); flex-shrink: 0;
  object-fit: cover;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--text); }
.review-job  { font-size: 12px; color: var(--text-3); margin-top: 1px; }
.review-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-light); color: var(--blue);
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 6px; margin-top: 6px;
}
.review-service {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--bg-gray);
  color: var(--text-3);
  margin-bottom: 12px;
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  gap: 16px;
}
.faq-q:hover { background: var(--bg-gray); }
.faq-icon { font-size: 20px; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ─── GUARANTEE STRIP ─── */
.guarantee-strip {
  background: var(--blue);
  padding: 40px 24px;
  text-align: center;
}
.guarantee-strip h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.guarantee-strip p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── FOOTER CTA ─── */
.footer-cta {
  background: var(--text);
  padding: 80px 24px;
  text-align: center;
}
.footer-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-cta p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 16px 36px; border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .15s;
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue);
  font-size: 16px; font-weight: 700;
  padding: 16px 36px; border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ─── REGISTRATION FORM ─── */
.reg-section {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reg-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 72px 24px;
  text-align: center;
}
.reg-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 10px;
}
.reg-inner > p {
  font-size: 16px;
  color: var(--text-3);
  margin-bottom: 32px;
  line-height: 1.65;
}
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reg-form input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.reg-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.1);
}
.reg-form input::placeholder { color: var(--text-3); }
.reg-submit {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.reg-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }
.reg-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.reg-msg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}
.reg-msg.success {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid #BFDBFE;
}
.reg-msg.error {
  display: flex; align-items: center; gap: 10px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.reg-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 10px;
}

/* ─── FOOTER BAR ─── */
.footer-bar {
  background: #000;
  color: #6b7280;
  text-align: center;
  padding: 20px 24px;
  font-size: 13px;
}
.footer-bar a { color: #9ca3af; text-decoration: none; }
.footer-bar a:hover { color: #fff; }

/* ─── ANIMATION INIT ─── */
.anim { opacity: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 50%; border-bottom: 1px solid var(--border); }
  .hero-search { flex-direction: column; border-radius: 12px; }
  .hero-search button { padding: 14px; border-radius: 0 0 10px 10px; justify-content: center; }
}
