:root {
  color-scheme: light;
  --bg: #eef2ec;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: #edf4ef;
  --surface-muted: #f7faf6;
  --text: #122019;
  --muted: #384c43;
  --line: #d7e0d8;
  --primary: #0f6a52;
  --primary-dark: #0b2e25;
  --primary-soft: #dff1e7;
  --accent: #d39a49;
  --accent-soft: #f6ecdd;
  --shadow: 0 22px 55px rgba(7, 38, 30, 0.12);
  --page-ambient: rgba(35, 130, 97, 0.16);
  --page-ambient-warm: rgba(211, 154, 73, 0.14);
  --page-bg-start: rgba(250, 247, 241, 0.72);
  --page-bg-end: rgba(238, 244, 238, 0.76);
  --header-bg: rgba(255, 255, 255, 0.86);
  --header-line: rgba(19, 33, 27, 0.08);
  --hero-gradient-start: rgba(11, 54, 43, 0.54);
  --hero-gradient-end: rgba(8, 24, 21, 0.7);
  --slideshow-overlay-spot: rgba(15, 106, 82, 0.12);
  --slideshow-overlay-top: rgba(8, 20, 16, 0.18);
  --slideshow-overlay-bottom: rgba(241, 246, 242, 0.18);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101916;
  --surface: rgba(24, 36, 32, 0.92);
  --surface-soft: #1f312a;
  --surface-muted: #22342d;
  --text: #e3f0ea;
  --muted: #c9d8d2;
  --line: #31453d;
  --primary: #71d5a4;
  --primary-dark: #e5f7ef;
  --primary-soft: #234437;
  --accent: #efbf75;
  --accent-soft: rgba(239, 191, 117, 0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --page-ambient: rgba(86, 197, 143, 0.22);
  --page-ambient-warm: rgba(239, 191, 117, 0.12);
  --page-bg-start: rgba(17, 26, 23, 0.72);
  --page-bg-end: rgba(11, 19, 16, 0.8);
  --header-bg: rgba(10, 18, 15, 0.88);
  --header-line: rgba(227, 240, 234, 0.14);
  --hero-gradient-start: rgba(18, 67, 54, 0.62);
  --hero-gradient-end: rgba(8, 26, 22, 0.78);
  --slideshow-overlay-spot: rgba(14, 50, 40, 0.18);
  --slideshow-overlay-top: rgba(5, 14, 12, 0.28);
  --slideshow-overlay-bottom: rgba(8, 16, 14, 0.38);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  font-family: "Manrope", sans-serif;
  transition: color 0.25s ease, background 0.35s ease;
  background:
    radial-gradient(circle at 10% 8%, var(--page-ambient), transparent 42%),
    radial-gradient(circle at 86% 10%, var(--page-ambient-warm), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, var(--page-bg-start) 0%, var(--page-bg-end) 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0.08));
  opacity: 0.58;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-dark);
  font-weight: 800;
  box-shadow: var(--shadow);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  animation: background-slide 36s linear infinite;
  will-change: opacity, transform;
}

.bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.01) contrast(0.96) brightness(0.88) blur(1.4px);
}

.bg-slide:nth-child(1) {
  animation-delay: 0s;
}

.bg-slide:nth-child(2) {
  animation-delay: 7.2s;
}

.bg-slide:nth-child(3) {
  animation-delay: 14.4s;
}

.bg-slide:nth-child(4) {
  animation-delay: 21.6s;
}

.bg-slide:nth-child(5) {
  animation-delay: 28.8s;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, var(--slideshow-overlay-spot), transparent 42%),
    linear-gradient(180deg, var(--slideshow-overlay-top) 0%, rgba(10, 24, 19, 0.28) 46%, var(--slideshow-overlay-bottom) 100%);
}

@keyframes background-slide {
  0% {
    opacity: 1;
    transform: scale(1.045);
  }

  20% {
    opacity: 1;
    transform: scale(1.025);
  }

  30% {
    opacity: 0.78;
    transform: scale(1.012);
  }

  40% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.055);
  }
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
.hero-panel-title,
.trust-strip-value,
.google-review-score {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-line);
  box-shadow: 0 10px 28px rgba(11, 44, 34, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.trust-strip {
  padding: 18px 0 0;
  border-bottom: 0;
  background: transparent;
}

html[data-theme="dark"] .trust-strip {
  background: transparent;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(10, 31, 25, 0.12);
}

html[data-theme="dark"] .trust-strip-inner {
  border-color: rgba(227, 240, 234, 0.16);
  background: linear-gradient(180deg, rgba(15, 24, 20, 0.84), rgba(15, 24, 20, 0.64));
}

.trust-strip-item {
  position: relative;
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 18px 18px 16px;
}

.trust-strip-item::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.trust-strip-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-strip-value {
  font-size: 30px;
  line-height: 1;
  color: var(--primary-dark);
}

.trust-strip-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  opacity: 0.88;
}

.badge-helper-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-badge-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--surface), var(--surface-muted));
  box-shadow: var(--shadow);
}

.trust-badge-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.trust-badge-card p {
  color: var(--muted);
}

.quick-helper-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 247, 0.9));
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  align-self: start;
  position: sticky;
  top: 112px;
  overflow: hidden;
}

.quick-helper-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.22), transparent 72%);
  pointer-events: none;
}

.quick-helper-card h3 {
  font-size: 28px;
  line-height: 1.1;
}

.quick-helper-card p {
  color: var(--muted);
}

.quick-helper-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}

.quick-helper-select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-muted);
  color: var(--text);
}

.quick-helper-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 106, 82, 0.12);
}

.quick-helper-card .main-btn {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  height: 74px;
  width: auto;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

html[data-theme="dark"] .logo-image {
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(113, 213, 164, 0.14);
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-copy strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo-copy small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 10px 16px;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10, 31, 25, 0.08);
  scrollbar-width: none;
}

html[data-theme="dark"] .main-nav {
  background: rgba(12, 24, 20, 0.72);
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav > a,
.main-nav > .nav-dropdown {
  flex: 0 0 auto;
}

.main-nav > a,
.main-nav > .nav-dropdown > summary {
  position: relative;
  color: var(--muted);
}

.main-nav > .nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  padding-right: 16px;
}

.main-nav > .nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.main-nav > .nav-dropdown > summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.main-nav > .nav-dropdown[open] > summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.main-nav > a::after,
.main-nav > .nav-dropdown > summary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav > .nav-dropdown > summary:hover,
.main-nav > .nav-dropdown.active > summary,
.main-nav > .nav-dropdown[open] > summary {
  color: var(--primary-dark);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.main-nav > .nav-dropdown > summary:hover::before,
.main-nav > .nav-dropdown.active > summary::before,
.main-nav > .nav-dropdown[open] > summary::before {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 35;
  min-width: 280px;
  max-height: min(60vh, 460px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-soft);
  color: var(--primary-dark);
}

.nav-dropdown-all {
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--primary-dark);
}

.language-btn {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.language-slider {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 124px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.language-slider-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.language-slider.is-en .language-slider-thumb {
  transform: translateX(58px);
}

.language-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  border-radius: 999px;
}

.language-option.active {
  color: var(--primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.callback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #36b16d 0%, #157252 100%);
  color: #ffffff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 32px rgba(21, 114, 82, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.callback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 143, 91, 0.36);
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  min-width: 166px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-dark);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(11, 44, 34, 0.14);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

html.theme-dark-only .theme-btn {
  display: none !important;
}

.theme-btn:hover {
  transform: translateY(-1px);
}

.theme-toggle-visual {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.theme-toggle-thumb {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(20px);
  background: #ffd166;
}

.theme-label {
  white-space: nowrap;
}

.theme-btn:focus-visible,
.callback-btn:focus-visible,
.language-option:focus-visible,
.main-nav a:focus-visible,
.main-nav > .nav-dropdown > summary:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.contact-form button:focus-visible,
.mobile-action:focus-visible,
.whatsapp-float:focus-visible,
.skip-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 74px 0 102px;
  color: #ffffff;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.84) 0%, rgba(7, 18, 15, 0.56) 44%, rgba(7, 18, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(8, 20, 16, 0.16) 0%, rgba(8, 20, 16, 0.56) 100%),
    radial-gradient(circle at top right, rgba(211, 154, 73, 0.18), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto -120px -170px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.28), rgba(255, 255, 255, 0.04) 58%, transparent 72%);
  filter: blur(4px);
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.hero-content {
  max-width: 760px;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.label,
.section-kicker,
.panel-label,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label {
  padding: 8px 14px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(211, 154, 73, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-alert::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(211, 154, 73, 0.16);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(46px, 6.4vw, 78px);
  line-height: 0.94;
  margin-bottom: 18px;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.97);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero-highlight-band {
  max-width: 650px;
  margin-top: 28px;
  padding: 22px 22px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.hero-highlight-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.hero-highlight-band p:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-proof-item {
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
  display: grid;
  gap: 4px;
}

.hero-proof-item strong {
  font-size: 26px;
  line-height: 1;
}

.hero-proof-item span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(9, 34, 28, 0.72), rgba(10, 28, 23, 0.86));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(211, 154, 73, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel-compact {
  align-self: stretch;
}

.panel-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.hero-panel-title {
  font-size: clamp(31px, 3vw, 38px);
  line-height: 0.98;
  color: #ffffff;
}

.hero-panel-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.97);
  font-weight: 700;
}

.hero-status-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(211, 154, 73, 0.14);
}

.check-list,
.feature-list,
.contact-list {
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
}

.hero-panel .check-list {
  gap: 14px;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 22px;
}

.hero-panel .check-list li {
  color: rgba(255, 255, 255, 0.95);
}

.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-panel-metric {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel-metric strong {
  color: #ffffff;
  font-size: 15px;
}

.hero-panel-metric span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.45;
}

.hero-panel-btn {
  width: 100%;
  margin-top: 18px;
}

.check-list li::before,
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.compact-row {
  margin-top: 0;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(11, 44, 34, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(11, 44, 34, 0.2);
}

.main-btn.primary {
  background: linear-gradient(135deg, #38ae71 0%, #157252 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(21, 114, 82, 0.28);
}

.main-btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-color: rgba(255, 255, 255, 0.22);
}

.main-btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
}

.main-btn.outline {
  background: rgba(15, 106, 82, 0.06);
  color: var(--primary-dark);
  border-color: rgba(19, 33, 27, 0.16);
}

html[data-theme="dark"] .main-btn.secondary {
  background: #12231d;
  color: #e8f5ef;
  border-color: rgba(227, 240, 234, 0.24);
}

html[data-theme="dark"] .main-btn.outline {
  border-color: rgba(227, 240, 234, 0.26);
}

.section {
  position: relative;
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(15, 106, 82, 0.05), rgba(255, 255, 255, 0) 64%);
}

html[data-theme="dark"] .section-soft {
  background: linear-gradient(180deg, rgba(25, 44, 36, 0.52), rgba(13, 21, 18, 0.2));
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 4px;
  margin-bottom: 38px;
  padding-bottom: 24px;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-kicker,
.card-label {
  color: var(--primary);
  margin-bottom: 10px;
}

.section-kicker,
.panel-label {
  padding: 8px 14px;
  border: 1px solid rgba(15, 106, 82, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .panel-label {
  background: rgba(255, 255, 255, 0.04);
}

.card-label {
  min-width: 46px;
  justify-content: center;
  padding: 8px 10px;
  background: var(--accent-soft);
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

:is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.94));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

html[data-theme="dark"] :is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container {
  border-color: rgba(227, 240, 234, 0.12);
  background: linear-gradient(180deg, rgba(24, 36, 32, 0.74), rgba(20, 32, 28, 0.9));
}

:is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.2), transparent 70%);
  pointer-events: none;
}

:is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container > * {
  position: relative;
  z-index: 1;
}

.section-heading p,
.info-card p,
.service-card p,
.step-card p,
.review-card p,
.about-box p,
.detail-card p,
.contact-form p,
.cta-card p {
  color: var(--muted);
}

#home-overview .section-heading h2,
#home-overview .section-heading > p:not(.section-kicker) {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

#home-overview .section-kicker {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(7, 18, 15, 0.34);
}

.card-grid,
.case-grid,
.area-grid,
.step-grid,
.contact-layout,
.footer-grid,
.split-layout {
  display: grid;
  gap: 24px;
}

.seo-grid {
  align-items: stretch;
}
  background: rgba(255, 255, 255, 0.84);
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card,
.service-card,
.step-card,
.review-card,
.detail-card,
.area-card,
.contact-form,
.about-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(15, 106, 82, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 248, 0.9));
  box-shadow: 0 16px 36px rgba(11, 44, 34, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

html[data-theme="dark"] .info-card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .step-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .detail-card,
html[data-theme="dark"] .area-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .about-box,
html[data-theme="dark"] .trust-badge-card,
html[data-theme="dark"] .case-card,
html[data-theme="dark"] .quick-helper-card {
  background: linear-gradient(180deg, rgba(28, 42, 37, 0.98), rgba(23, 35, 31, 0.88));
}

.info-card::after,
.service-card::after,
.step-card::after,
.review-card::after,
.trust-badge-card::after,
.contact-form::after,
.about-box::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.16), transparent 72%);
  pointer-events: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary), #68c793);
}

.service-price {
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
}

.price-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.service-price-badge {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}

.price-note-inline {
  margin-top: 10px;
}

.service-card:hover,
.info-card:hover,
.review-card:hover,
.step-card:hover,
.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 106, 82, 0.26);
  box-shadow: 0 24px 42px rgba(11, 44, 34, 0.18);
}

.seo-card {
  background: linear-gradient(180deg, #ffffff, #f1f9f4);
}

html[data-theme="dark"] .seo-card {
  background: linear-gradient(180deg, #1a2823, #20352c);
}

.seo-card h3 {
  margin-bottom: 12px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(15, 106, 82, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
  font-size: 26px;
}

.card-link,
.text-link {
  color: var(--primary);
  font-weight: 800;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .card-link::after {
  content: "↗";
  font-size: 14px;
}

.trust-grid,
.audience-grid,
.review-grid {
  align-items: stretch;
}

.google-review-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 106, 82, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 247, 0.78));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.google-review-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.google-review-kicker {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.google-review-stars {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #f7b500;
}

.google-review-score {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.google-review-count {
  color: var(--muted);
}

.review-meta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 247, 0.88));
  box-shadow: var(--shadow);
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.case-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.case-card-content {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.case-card-content p {
  color: var(--muted);
}

.case-card-content strong {
  color: var(--primary-dark);
}

.audience-card {
  background: linear-gradient(180deg, #ffffff, #f6fbf7);
}

html[data-theme="dark"] .audience-card {
  background: linear-gradient(180deg, #1a2923, #24392f);
}

.emergency-card,
.cta-card,
.contact-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-intro-card h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 0.98;
  margin-bottom: 14px;
}

.page-intro-card > div {
  min-width: 0;
}

.page-intro-card p:not(.section-kicker) {
  max-width: 54ch;
}

.emergency-card,
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(126deg, #10664f 0%, #0b2a22 52%, #083128 100%);
}

.emergency-card p,
.cta-card p,
.emergency-card h2,
.cta-card h2 {
  color: inherit;
}

.emergency-card .section-kicker,
.cta-card .section-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.emergency-card .main-btn.outline,
.cta-card .main-btn.outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  position: relative;
  padding-top: 64px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-search-wrap {
  max-width: 860px;
  margin-bottom: 14px;
}

.faq-search-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 106, 82, 0.12);
}

.faq-search-empty {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.faq-list-wide {
  max-width: none;
}

.faq-list-wide + .text-link,
.faq-list + .text-link {
  margin-top: 14px;
  display: inline-flex;
}

.faq-item {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 248, 0.88));
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 12px;
}

.area-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-card h3 {
  margin-bottom: 18px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.split-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.split-copy {
  margin-bottom: 0;
}

.detail-card {
  align-self: start;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.about-box {
  background: linear-gradient(180deg, #ffffff, #eef7f0);
}

html[data-theme="dark"] .about-box {
  background: linear-gradient(180deg, #192721, #22362d);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-card {
  color: #ffffff;
  background: linear-gradient(145deg, #0c5d49 0%, #08241d 56%, #123127 100%);
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.28), transparent 70%);
}

.contact-card p,
.contact-card h2,
.contact-card a,
.contact-card span,
.contact-card strong {
  color: inherit;
}

.contact-card .section-kicker {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.contact-chips {
  margin-top: 20px;
}

.callback-inline-btn {
  margin-top: 20px;
}

.callback-message {
  border: 1px solid rgba(15, 106, 82, 0.3);
}

.appointment-message {
  border: 1px solid rgba(60, 168, 109, 0.45);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form > .main-btn.primary {
  width: 100%;
  max-width: 340px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appointment-fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-muted);
}

.appointment-fieldset legend {
  padding: 0 8px;
  font-weight: 800;
  color: var(--primary-dark);
}

.appointment-intro {
  margin-bottom: 12px;
  color: var(--muted);
}

.appointment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appointment-note {
  margin-top: 10px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-muted);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 106, 82, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.success-message {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.field-note {
  font-size: 14px;
}

.cta-section {
  padding-top: 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f9d62 0%, #0f6a52 100%);
  box-shadow: 0 20px 45px rgba(15, 106, 82, 0.28);
}

.mobile-action-bar {
  display: none;
}

.mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  font-weight: 800;
  color: #ffffff;
}

.mobile-action.call {
  background: #0c5442;
}

.mobile-action.whatsapp {
  background: #178d57;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-footer {
  margin-top: 52px;
  position: relative;
  overflow: hidden;
  padding: 36px 0 16px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, #0a1412 0%, #07100d 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 5%;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 154, 73, 0.18), transparent 70%);
  pointer-events: none;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .site-footer {
  background: #070f0d;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand h3,
.footer-links h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-detail-block {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-detail-block h4 {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-detail-list {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-detail-list li {
  display: grid;
  gap: 4px;
}

.footer-detail-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-detail-list strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .bg-slide {
    animation: none;
    opacity: 0;
    transform: scale(1);
  }

  .theme-btn,
  .theme-toggle-thumb {
    transition: none;
  }

  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .bg-slide:first-child {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .badge-helper-layout,
  .trust-badges-grid,
  .hero-shell,
  .case-grid,
  .step-grid,
  .footer-grid,
  .contact-layout,
  .split-layout,
  .emergency-card,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-review-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-shell {
    gap: 26px;
  }

  .hero-content,
  .hero-text,
  .hero-highlight-band {
    max-width: none;
  }

  .hero-panel {
    max-width: 720px;
  }

  :is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container {
    padding: 32px;
  }

  .quick-helper-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 1240px) and (min-width: 781px) {
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 220px;
    justify-items: stretch;
  }

  .callback-btn,
  .theme-btn,
  .language-slider {
    width: 100%;
    min-width: 0;
  }

  .theme-btn {
    justify-content: center;
  }

  .language-slider {
    max-width: none;
  }
}

@media (min-width: 781px) {
  html.theme-dark-only .header-actions:not(.admin-toolbar) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-left: auto;
    width: max-content;
  }

  html.theme-dark-only .header-actions:not(.admin-toolbar) .callback-btn,
  html.theme-dark-only .header-actions:not(.admin-toolbar) .language-slider {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  html.theme-dark-only .header-actions:not(.admin-toolbar) .callback-btn {
    padding: 11px 16px;
  }

  html.theme-dark-only .header-actions:not(.admin-toolbar) .language-slider {
    width: 124px;
    align-self: flex-start;
  }
}

@media (max-width: 1120px) and (min-width: 781px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo actions"
      "nav nav";
    align-items: center;
    gap: 18px 24px;
  }

  .logo {
    grid-area: logo;
    min-width: 0;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 14px;
    scroll-snap-type: x proximity;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    scroll-snap-align: start;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > summary {
    white-space: nowrap;
  }

  .header-actions:not(.admin-toolbar) {
    grid-area: actions;
    justify-self: end;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "nav"
      "actions";
    align-items: center;
    justify-items: center;
    gap: 6px;
    padding: 5px 0 7px;
  }

  .logo {
    grid-area: logo;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    justify-content: flex-start;
    justify-self: start;
  }

  .logo-copy {
    min-width: 0;
    gap: 1px;
    text-align: left;
  }

  .header-actions:not(.admin-toolbar) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-area: actions;
    width: auto;
    max-width: 100%;
    gap: 8px;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .callback-btn,
  .theme-btn,
  .language-slider {
    flex: initial;
  }

  .callback-btn {
    width: auto;
    min-width: 136px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .language-slider {
    width: 96px;
    max-width: none;
    align-self: center;
  }

  .language-slider-thumb {
    width: calc(50% - 5px);
    left: 4px;
    height: 26px;
  }

  .language-slider.is-en .language-slider-thumb {
    transform: translateX(calc(100% + 1px));
  }

  .logo-image {
    height: 40px;
    border-radius: 10px;
  }

  .logo-copy strong {
    font-size: 13px;
    line-height: 1.08;
  }

  .logo-copy small {
    display: none;
  }

  .main-nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100%, 350px);
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    font-size: 11px;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    width: auto;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
    scroll-snap-align: none;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid rgba(227, 240, 234, 0.14);
    border-radius: 999px;
    background: rgba(10, 20, 17, 0.58);
    backdrop-filter: blur(12px);
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  }

  .logo-copy,
  .hero h1,
  .hero-text,
  .hero-highlight-band p,
  .hero-panel-title,
  .hero-panel-text,
  .hero-panel-status span,
  .hero-panel-metric span,
  .section-heading h2,
  .section-heading p,
  .info-card h3,
  .info-card p,
  .service-card h3,
  .service-card p,
  .review-card p,
  .detail-card p,
  .about-box p,
  .faq-item summary,
  .faq-item p,
  .contact-card p,
  .contact-list a,
  .main-btn,
  .callback-btn,
  .main-nav > a,
  .main-nav > .nav-dropdown > summary {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .main-nav > .nav-dropdown > summary {
    padding-right: 22px;
  }

  .main-nav > a::after,
  .main-nav > .nav-dropdown > summary::before {
    display: none;
  }

  .main-nav > a.active,
  .main-nav > .nav-dropdown.active > summary,
  .main-nav > .nav-dropdown[open] > summary {
    color: #ffffff;
    background: rgba(17, 37, 31, 0.92);
    border-color: rgba(113, 213, 164, 0.34);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  }

  .main-nav > .nav-dropdown > summary::after {
    right: 8px;
    width: 5px;
    height: 5px;
  }

  .main-nav > .nav-dropdown {
    width: auto;
  }

  .nav-dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: min(86vw, 320px);
    width: min(86vw, 320px);
    margin-top: 8px;
    max-height: min(60vh, 420px);
  }

  .section,
  .hero {
    padding: 54px 0;
  }

  .cta-card,
  .emergency-card,
  .page-intro-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 24px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .trust-strip {
    display: none;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .trust-strip-item {
    padding: 14px 10px;
    text-align: center;
  }

  .trust-strip-value {
    font-size: clamp(24px, 7vw, 34px);
  }

  .trust-strip-label {
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-meta-row {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-highlight-band {
    margin-top: 20px;
    padding: 16px;
  }

  .button-row.compact-row,
  .contact-chips,
  .cta-card .button-row,
  .emergency-card .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .button-row.compact-row .main-btn,
  .contact-chips .main-btn,
  .cta-card .button-row .main-btn,
  .emergency-card .button-row .main-btn {
    width: 100%;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero .main-btn,
  .hero-panel-btn {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
  }

  .hero-panel-title {
    font-size: 24px;
  }

  .hero-panel-text {
    font-size: 15px;
  }

  .hero-panel-status {
    align-items: flex-start;
    margin: 16px 0 14px;
    padding: 10px 12px;
  }

  .hero-panel-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-panel-metric {
    padding: 12px;
    border-radius: 14px;
  }

  .hero-panel-metric strong {
    font-size: 14px;
  }

  .hero-panel-metric span {
    font-size: 12px;
    line-height: 1.35;
  }

  .card-grid,
  .trust-badges-grid,
  .area-grid,
  .form-grid,
  .appointment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-card {
    padding: 22px;
  }

  .contact-form > .main-btn.primary {
    max-width: none;
  }

  .chip-list {
    width: 100%;
  }

  .chip-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-proof-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-proof-item {
    padding: 10px 8px;
    gap: 3px;
    border-radius: 14px;
  }

  .hero-proof-item strong {
    font-size: 20px;
  }

  .hero-proof-item span {
    font-size: 10px;
  }

  .trust-strip-item {
    text-align: center;
  }

  .trust-strip-item:not(:last-child) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .quick-helper-card h3 {
    font-size: 22px;
  }

  :is(#waarom, #diensten, #werkgebied, #reviews, #contact) .container {
    padding: 20px;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 560px) {
  .hero-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions:not(.admin-toolbar) {
    gap: 6px;
  }

  .callback-btn {
    min-width: 128px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .language-slider {
    width: 90px;
  }

  .language-slider-thumb {
    height: 24px;
  }

  .main-nav {
    width: min(100%, 320px);
    gap: 4px;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown > summary {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 11px;
    white-space: normal;
    line-height: 1.2;
  }

  .callback-btn,
  .main-btn {
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .hero-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-proof-item {
    padding: 8px 6px;
  }

  .hero-proof-item strong {
    font-size: 18px;
  }

  .hero-proof-item span {
    font-size: 9px;
  }

  .trust-strip-item {
    padding: 12px 8px;
  }

  .trust-strip-value {
    font-size: clamp(20px, 7.5vw, 28px);
  }

  .trust-strip-label {
    font-size: 9px;
  }

  .page-intro-card h1 {
    max-width: 100%;
    font-size: clamp(25px, 8.6vw, 33px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .cta-card,
  .emergency-card,
  .page-intro-card,
  .contact-form,
  .contact-card {
    padding: 18px;
  }

  .info-card,
  .service-card,
  .step-card,
  .review-card,
  .detail-card,
  .area-card,
  .contact-form,
  .about-box,
  .trust-badge-card,
  .quick-helper-card {
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .page-intro-card h1 {
    font-size: clamp(23px, 8.2vw, 29px);
  }
}

@media (max-width: 420px) {
  .hero-proof-list {
    grid-template-columns: 1fr;
  }
}