.dg-layout {
  color: #0c2b57;
  font-family: "Inter", Arial, sans-serif;
  background: #f5f8fc;
  overflow-wrap: normal;
}

.dg-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.dg-topbar {
  background: #006fba;
  color: #fff;
  font-size: 14px;
}

.dg-topbar .dg-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 44px;
}

.dg-topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dg-topbar__phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 8px 12px;
  border-radius: 999px;
}

.dg-topbar__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dg-topbar__cta {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #09376d;
  padding: 8px 18px;
}

.dg-nav {
  background: #fff;
  border-bottom: 1px solid #d9dfe8;
}

/* Hide Neve default header; DomioGuard header sections below replace it site-wide. */
header.header {
  display: none !important;
}

.dg-nav__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dg-brand img {
  width: auto;
  height: 112px;
  max-width: 360px;
  object-fit: contain;
  display: block;
}

.dg-menu {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 26px;
  padding: 0;
}

.dg-menu a {
  color: #0d2e60;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}


.dg-menu > li {
  position: relative;
}

.dg-menu__has-submenu {
  padding-bottom: 0;
  margin-bottom: 0;
}

.dg-menu__has-submenu > a::after {
  content: " ▾";
  font-size: 12px;
}

.dg-submenu-toggle {
  display: none !important;
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.dg-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 420px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #d6deea;
  box-shadow: 0 12px 28px rgba(10, 39, 80, 0.14);
  z-index: 25;
  display: none;
}

.dg-submenu li {
  margin: 0;
}

.dg-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #24476f;
  text-decoration: none;
  border-bottom: 1px solid #ecf1f7;
}

.dg-submenu li:last-child a {
  border-bottom: 0;
}

.dg-menu__has-submenu:hover .dg-submenu,
.dg-menu__has-submenu:focus-within .dg-submenu {
  display: block;
}


.dg-menu__has-submenu.is-open .dg-submenu {
  display: block;
}

.dg-menu__has-submenu.is-open > a::after {
  content: " ▴";
}

.dg-site-search {
  display: flex;
  align-items: center;
  border: 2px solid #006fba;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.dg-site-search__input {
  border: 0;
  min-width: 220px;
  padding: 8px 12px;
  font-size: 13px;
}

.dg-site-search--topbar {
  border-color: rgba(255, 255, 255, 0.8);
}

.dg-site-search--topbar .dg-site-search__input {
  min-width: 260px;
}

.dg-site-search__button {
  border: 0;
  border-left: 1px solid #bcd1e8;
  background: transparent;
  color: #0d2e60;
  font-size: 16px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

.dg-benefits {
  border-bottom: 1px solid #d9dfe8;
  background: #fff;
}

.dg-benefits ul {
  margin: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  list-style: none;
  color: #1d3a5f;
  font-size: 14px;
}

.dg-hero {
  position: relative;
  --dg-hero-min-height: min(84vh, 1060px);
  min-height: var(--dg-hero-min-height);
}

.dg-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dg-hero--compact {
  --dg-hero-min-height: min(48vh, 520px);
}

.dg-hero--compact img {
  object-position: 50% 74%;
}

.dg-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}


.dg-hero--dim {
  position: relative;
}

.dg-hero--dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.dg-hero__content {
  position: relative;
  min-height: var(--dg-hero-min-height);
  padding-top: clamp(30px, 5vh, 56px);
  padding-bottom: clamp(30px, 5vh, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 560px;
  z-index: 2;
}

.dg-hero__kicker {
  margin: 0 0 8px;
  font-weight: 600;
}

.dg-hero__content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.dg-hero__lead {
  margin: 18px 0 0;
  color: #b7bec8;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.1;
  max-width: 520px;
}

.dg-layout .dg-hero__content p {
  color: #b7bec8;
}

.dg-hero__actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dg-hero__points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
  line-height: 1.45;
}

.dg-intro {
  background: #f5f8fc;
  padding: 34px 0 64px;
}

.dg-breadcrumb {
  margin-bottom: 36px;
  color: #28466f;
  font-size: 15px;
  display: flex;
  gap: 10px;
}

.dg-breadcrumb a {
  color: #28466f;
  text-decoration: none;
}

.dg-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.dg-intro__grid h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  padding-right: 20px;
  border-right: 2px solid #4f6d95;
}

.dg-intro__grid p {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 32px);
  line-height: 1.35;
  color: #1d3c68;
}

.dg-section {
  padding: 72px 0;
  background: #fff;
}

.dg-reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.dg-reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .dg-reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.dg-section--blue {
  background: #dbe8f4;
}

.dg-split {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 42px;
  align-items: center;
}

.dg-split--reverse {
  grid-template-columns: 1fr minmax(280px, 420px);
}

.dg-image-card img {
  width: 100%;
  border-radius: 4px;
  display: block;
}


.dg-koffer-image-crop {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}

.dg-layout h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
  color: #0f2f5f;
}

.dg-layout p,
.dg-layout ol {
  color: #1f436f;
  font-size: 17px;
  line-height: 1.6;
}

.dg-layout ol {
  margin: 0 0 24px;
  padding-left: 20px;
}

.dg-button {
  display: inline-block;
  background: #006fba;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid #006fba;
  font-size: 14px;
}


/* Lokale pagina CTA-knoppen: consistente pill-vorm op desktop en mobiel. */
.dg-layout .wp-block-button__link,
.dg-layout .wp-element-button,
.dg-layout a.wp-element-button {
  border-radius: 999px;
}

@media (max-width: 767px) {
  .dg-layout .wp-block-buttons .wp-block-button {
    width: 100%;
  }

  .dg-layout .wp-block-button__link,
  .dg-layout .wp-element-button,
  .dg-layout a.wp-element-button {
    width: 100%;
    text-align: center;
  }
}

.dg-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: start;
}

.dg-feature {
  background: #f1f6fc;
  border: 1px solid #c9d8ea;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: #12335f;
  display: grid;
  gap: 6px;
}

.dg-feature strong {
  font-size: 18px;
}


.dg-section--dark {
  background: #0d2e60;
  color: #fff;
}

.dg-section--dark h2,
.dg-section--dark p {
  color: #fff;
}

.dg-steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
}

.dg-step {
  text-align: center;
}

.dg-step span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid #9ec4ea;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dg-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.dg-section--cta {
  background: #0d2e60;
  color: #fff;
  padding: 56px 0;
}

.dg-cta-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.dg-section--cta h2,
.dg-section--cta p {
  color: #fff;
  margin: 0;
}

.dg-section--cta p {
  margin-top: 10px;
  font-size: 17px;
}

.dg-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



.dg-cta-actions--local {
  margin: 24px 0 4px;
}

.dg-cta-actions--local .dg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 9999px !important;
  overflow: hidden;
}

@media (max-width: 767px) {
  .dg-cta-actions--local {
    width: 100%;
  }

  .dg-cta-actions--local .dg-button {
    width: 100%;
    text-align: center;
  }
}
.dg-button--ghost {
  background: transparent;
  border: 1px solid #fff;
}

@media (max-width: 1024px) {
  .dg-menu__has-submenu .dg-submenu {
    display: none;
  }

  .dg-menu {
    gap: 16px;
    font-size: 14px;
  }

  .dg-site-search__input {
    min-width: 190px;
  }

  .dg-topbar .dg-wrap {
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .dg-intro__grid p {
    font-size: 20px;
  }

  .dg-split,
  .dg-split--reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dg-topbar .dg-wrap,
  .dg-nav__inner,
  .dg-benefits ul {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .dg-wrap {
    padding: 0 14px;
  }

  .dg-nav__inner {
    gap: 8px;
    min-height: 0;
  }

  .dg-brand img {
    height: 64px;
    max-width: 210px;
  }

  .dg-topbar__actions {
    width: 100%;
  }

  .dg-topbar__phone,
  .dg-topbar__link,
  .dg-topbar__cta {
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 6px 10px;
  }

  .dg-menu {
    width: 100%;
    gap: 6px;
  }

  .dg-menu li,
  .dg-menu a {
    width: 100%;
  }

  .dg-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    border: 1px solid #d9e3ef;
    border-radius: 8px;
    background: #f7fafd;
  }

  .dg-benefits ul {
    gap: 6px;
  }

  .dg-benefits li {
    width: 100%;
    font-size: 13px;
  }

  .dg-site-search {
    border-width: 1px;
  }

  .dg-site-search__input {
    padding: 6px 10px;
    font-size: 12px;
  }

  .dg-site-search__button {
    padding: 6px 10px;
    font-size: 14px;
  }

  .dg-hero {
    --dg-hero-min-height: min(72vh, 760px);
  }

  .dg-hero--compact {
    --dg-hero-min-height: min(52vh, 520px);
  }

  .dg-hero__content {
    padding-top: 26px;
    padding-bottom: 24px;
    justify-content: flex-start;
    max-width: 100%;
  }

  .dg-hero__content h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.03;
  }

  .dg-hero__lead {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
  }

  .dg-hero__points {
    font-size: 18px;
    line-height: 1.35;
  }

  .dg-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dg-hero__actions .dg-button {
    width: 100%;
    text-align: center;
  }

  .dg-menu {
    flex-wrap: wrap;
  }

  .dg-menu__has-submenu {
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
  }

  .dg-menu__has-submenu .dg-submenu {
    display: none;
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 6px;
    border-color: #d9e3ef;
    background: #fff;
  }


  .dg-menu__has-submenu:hover .dg-submenu,
  .dg-menu__has-submenu:focus-within .dg-submenu {
    display: none;
  }

  .dg-menu__has-submenu > a::after {
    content: "";
  }

  .dg-menu__has-submenu > a {
    padding-right: 44px;
  }

  .dg-submenu-toggle {
    position: absolute;
    right: 8px;
    top: 3px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: transparent !important;
    color: #0d2e60;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
  }

  .dg-submenu-toggle:focus,
  .dg-submenu-toggle:hover {
    background: transparent !important;
  }

  .dg-submenu-toggle::before {
    content: "▾";
  }

  .dg-menu__has-submenu.is-open .dg-submenu {
    display: block !important;
  }

  .dg-menu__has-submenu.is-open .dg-submenu-toggle::before {
    content: "▴";
  }


  .dg-site-search {
    width: 100%;
    max-width: 320px;
  }

  .dg-site-search--topbar {
    max-width: 100%;
  }

  .dg-site-search__input {
    min-width: 0;
    width: 100%;
  }

  .dg-intro__grid,
  .dg-card-grid,
  .dg-steps {
    grid-template-columns: 1fr;
  }

  .dg-intro {
    padding: 24px 0 42px;
  }

  .dg-intro__grid p {
    font-size: 18px;
    line-height: 1.45;
  }

  .dg-section {
    padding: 52px 0;
  }

  .dg-layout h2 {
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .dg-layout p,
  .dg-layout ol {
    font-size: 16px;
    line-height: 1.55;
  }

  .dg-button {
    width: 100%;
    text-align: center;
  }

  .dg-cta-actions {
    width: 100%;
  }

  .dg-cta-actions .dg-button {
    width: 100%;
  }

  .dg-intro__grid h1 {
    border-right: 0;
    border-bottom: 2px solid #4f6d95;
    padding-right: 0;
    padding-bottom: 16px;
  }

  .dg-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dg-contact-page {
  background: #f5f7fa;
  padding: 48px 0 64px;
}

.dg-contact-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.dg-contact-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 42px;
}

.dg-contact-eyebrow {
  color: #1f5fbf;
  font-weight: 700;
  margin-bottom: 6px;
}

.dg-contact-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  color: #153057;
}

.dg-contact-callout {
  border-left: 2px solid #153057;
  padding-left: 24px;
  color: #1f3556;
}

.dg-contact-callout__label {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dg-contact-callout__phone {
  display: inline-block;
  margin: 4px 0 8px;
  font-size: 34px;
  font-weight: 700;
  color: #1f5fbf;
  text-decoration: none;
}

.dg-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.dg-contact-form-column,
.dg-contact-details {
  box-sizing: border-box;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(17, 34, 68, 0.08);
  padding: 28px;
}

.dg-contact-form-column h2,
.dg-contact-details h3 {
  margin-top: 0;
  color: #153057;
}

.dg-contact-form-column__hint {
  margin: -4px 0 20px;
  color: #2f4260;
  font-size: 0.98rem;
  line-height: 1.55;
}

.dg-contact-details__logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 0 18px;
}

.dg-contact-details a {
  color: #1f5fbf;
  text-decoration: none;
}

.dg-contact-page .wpforms-container-full .wpforms-field-label,
.dg-contact-page .wpforms-container-full label {
  font-weight: 600 !important;
}

.dg-contact-page .wpforms-container-full input,
.dg-contact-page .wpforms-container-full textarea,
.dg-contact-page .wpforms-container-full select {
  border: 1px solid #d6dde8 !important;
  border-radius: 8px !important;
}

.dg-contact-page .wpforms-submit {
  background: #1f5fbf !important;
  border-radius: 999px !important;
  border: 0 !important;
  padding: 10px 22px !important;
}

@media (max-width: 900px) {
  .dg-contact-hero,
  .dg-contact-grid {
    grid-template-columns: 1fr;
  }

  .dg-contact-callout {
    border-left: 0;
    border-top: 2px solid #153057;
    padding-left: 0;
    padding-top: 16px;
  }
}


.dg-contact-form {
  display: grid;
  gap: 14px;
}

.dg-contact-form label,
.dg-contact-form legend {
  font-weight: 600;
  color: #153057;
}

.dg-contact-form input,
.dg-contact-form textarea,
.dg-contact-form select {
  width: 100%;
  border: 1px solid #d6dde8;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 16px;
}

.dg-contact-form__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dg-contact-form__fieldset label {
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.dg-contact-form__fieldset input[type='radio'] {
  width: auto;
  margin-top: 3px;
}

.dg-contact-form .wp-element-button {
  justify-self: start;
  background: #1f5fbf;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
}

.dg-contact-form__notice {
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0 0 14px;
}

.dg-contact-form__notice--success {
  background: #e7f8ef;
  color: #0f5f33;
}

.dg-contact-form__notice--error {
  background: #ffebec;
  color: #8a1820;
}


.dg-section--light {
  background: #f3f6fa;
}

.dg-title-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 34px;
}

.dg-title-split p {
  margin: 0;
}

.dg-title-split > :last-child {
  border-left: 2px solid #153a68;
  padding-left: 28px;
}

.dg-practice-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.dg-practice-signal {
  margin: 0;
  background: #fff;
  border: 1px solid #cfe0f2;
  border-radius: 10px;
  padding: 14px 16px;
  color: #163b69;
}

.dg-practice-actions {
  margin: 0 0 28px;
  text-align: center;
}

.dg-practice-video-wrap {
  display: flex;
  justify-content: center;
}

.dg-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dg-video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  width: min(100%, 680px);
}

.dg-video-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.76);
}


.dg-video-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.dg-video-modal {
  position: fixed !important;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.dg-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.dg-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 30, 0.78);
}

.dg-video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background: #0c1f3a;
  border-radius: 12px;
  padding: 14px;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.dg-video-modal__frame-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.dg-video-modal__frame-wrap iframe,
.dg-video-modal__frame-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dg-video-modal__frame-wrap video {
  background: #000;
}

.dg-video-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #fff;
  color: #153a68;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.dg-section--packages {
  background: #eef2f6;
}

.dg-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}


.dg-package-grid--single {
  grid-template-columns: minmax(320px, 760px);
  justify-content: center;
}

.dg-package-grid--two-centered {
  grid-template-columns: repeat(2, minmax(300px, 460px));
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.dg-package-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #d8e2ef;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dg-package-card--featured {
  border: 2px solid #006fba;
}

.dg-package-card h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.12;
}

.dg-package-card h3 span {
  display: block;
  margin-top: 10px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.35;
  font-weight: 500;
  color: #1f8eda;
}
.dg-package-card__badge,
.dg-package-compare__badge {
  position: absolute;
  top: -16px;
  left: 22px;
  background: #1f8eda;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
}

.dg-package-card__promo,
.dg-package-compare__promo {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #eef6fd;
  color: #1a4371;
  border: 1px solid #c9def2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
}

.dg-price--welcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.dg-price__normal {
  font-size: 14px;
  color: #5b789b;
  text-decoration: line-through;
}

.dg-price__deal {
  font-size: 28px;
  font-weight: 800;
  color: #0f3261;
}

.dg-price__note {
  font-size: 13px;
  color: #5b789b;
  font-weight: 600;
}

.dg-price__startup {
  font-size: 13px;
  color: #5b789b;
}

.dg-package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d8e4f2;
  margin-bottom: 14px;
}

.dg-package-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  flex: 1 1 auto;
}

.dg-price {
  margin-bottom: 18px;
}

.dg-price__startup {
  display: block;
  font-weight: 400;
}

.dg-price__monthly {
  display: block;
  font-weight: 700;
}

.dg-logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-bottom: 18px;
}

.dg-logo-row span {
  display: grid;
  place-items: center;
  border: 1px solid #b8cce2;
  border-radius: 999px;
  height: 52px;
  font-weight: 700;
  background: #fff;
}

.dg-reimbursement-note {
  margin-top: 0;
  padding-bottom: 54px;
  color: #31577f;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.dg-button--ghost-dark {
  background: transparent;
  color: #0d2e60;
  border: 2px solid #0d2e60;
}

.dg-section--reviews {
  background: #f4f6f8;
}

.dg-review-score {
  margin: 0 0 24px;
  font-size: 22px;
  text-align: center;
}

.dg-review-score strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid #0d2e60;
  margin-right: 8px;
}

.dg-review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  justify-items: center;
}

.dg-review-grid--single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.dg-review-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dbe3ec;
  padding: 16px;
}

.dg-review-card p {
  margin-top: 0;
}

.dg-review-card--google {
  width: 100%;
  padding: clamp(22px, 4vw, 36px);
  border-color: #cbd8e6;
  box-shadow: 0 14px 34px rgba(13, 46, 96, 0.08);
}

.dg-review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dg-review-stars {
  color: #f5b301;
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1;
}

.dg-review-source {
  color: #31577f;
  font-size: 14px;
  font-weight: 700;
}

.dg-review-card--google blockquote {
  margin: 0;
  color: #18344f;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
}

.dg-review-author {
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 22px 0 12px;
}

.dg-review-author span {
  color: #5b7084;
  font-size: 14px;
}

.dg-review-link {
  color: #0d2e60;
  font-weight: 700;
  text-underline-offset: 3px;
}

.dg-center {
  text-align: center;
}

.dg-section--cta-soft {
  background: #dce8f4;
}

.dg-contact-split {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 26px;
  align-items: center;
}

.dg-contact-split a {
  color: #0d2e60;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .dg-title-split,
  .dg-video-grid,
  .dg-package-grid,
  .dg-review-grid,
  .dg-contact-split,
  .dg-logo-row {
    grid-template-columns: 1fr 1fr;
  }

  .dg-review-grid,
  .dg-package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dg-title-split,
  .dg-video-grid,
  .dg-package-grid,
  .dg-review-grid,
  .dg-contact-split,
  .dg-logo-row {
    grid-template-columns: 1fr;
  }

  .dg-title-split > :last-child {
    border-left: 0;
    padding-left: 0;
  }

  .dg-practice-signals {
    grid-template-columns: 1fr;
  }

  .dg-video-card span {
    font-size: 24px;
    padding: 16px;
  }

  .dg-video-modal {
    padding: 12px;
  }

  .dg-video-modal__close {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  .dg-brand img {
    height: 72px;
  }

  .dg-hero__content h1 {
    font-size: clamp(30px, 11vw, 38px);
  }

  .dg-hero__lead {
    font-size: 18px;
  }

  .dg-hero__points {
    font-size: 16px;
  }

  .dg-contact-page {
    padding: 24px 0 42px;
  }

  .dg-contact-wrap {
    padding: 0 16px;
  }

  .dg-contact-form-column,
  .dg-contact-details {
    padding: 20px;
  }

  .dg-contact-callout__phone {
    font-size: 30px;
  }
}


.dg-over-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.dg-over-card {
  background: #f3f7fc;
  border: 1px solid #c8d8eb;
  border-radius: 10px;
  padding: 24px;
}

.dg-over-list {
  margin: 0 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.dg-over-list--light li {
  color: #fff;
}

.dg-plain-language-summary {
  margin: 28px 0 38px;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid #8eb9e5;
  border-radius: 16px;
  background: #f4f9ff;
  box-shadow: 0 12px 30px rgba(15, 47, 95, 0.08);
}

.dg-plain-language-summary h2 {
  margin-top: 0;
  color: #0f2f5f;
}

.dg-plain-language-summary p,
.dg-plain-language-summary li {
  color: #244a77;
  font-size: 18px;
  line-height: 1.65;
}

.dg-over-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dg-over-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dg-over-highlight {
  background: #fff;
  border: 1px solid #ccdaeb;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.dg-over-highlight strong {
  color: #0f2f5f;
  font-size: 18px;
}

.dg-over-highlight span {
  color: #20466f;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .dg-over-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dg-over-story,
  .dg-over-benefits,
  .dg-over-highlights {
    grid-template-columns: 1fr;
  }
}


.dg-product-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 28px;
  align-items: start;
}

.dg-product-card {
  background: #f4f8fc;
  border: 1px solid #c8d8eb;
  border-radius: 12px;
  padding: 24px;
}

@media (max-width: 900px) {
  .dg-product-grid {
    grid-template-columns: 1fr;
  }

  .dg-packages-grid {
    grid-template-columns: 1fr;
  }

  .dg-package-compare {
    width: 100%;
  }

  .dg-package-compare h2 {
    font-size: 30px;
  }

  .dg-package-compare .dg-over-list {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  /* Productenpagina: robuust forceren dat kolommen op mobiel onder elkaar komen. */
  body.page-template-template-domioguard-producten .dg-packages-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-61 .elementor .elementor-row,
  body.page-id-61 .elementor .elementor-container,
  body.page-id-61 .elementor .e-con,
  body.page-id-61 .elementor .e-flex {
    --flex-direction: column;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  body.page-id-61 .elementor .elementor-column,
  body.page-id-61 .elementor .e-con > .e-con,
  body.page-id-61 .elementor .e-con > .elementor-element {
    --width: 100%;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}


.dg-product-eyebrow {
  margin: 0 0 10px;
  color: #1f5fbf;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
}



.dg-intro--producten {
  background: #f5f8fc;
  padding-top: 48px;
}

.dg-packages {
  padding-top: 48px;
}

.dg-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.dg-package-compare {
  position: relative;
  background: #fff;
  border: 1px solid #cddaea;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dg-package-compare__label {
  margin: 0;
  color: #1a4371;
  font-weight: 700;
}

.dg-package-compare h2 {
  font-size: clamp(26px, 2.2vw, 32px);
  line-height: 1.12;
  margin: 6px 0 0;
}

.dg-package-compare h2 span {
  display: block;
  margin-top: 10px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.32;
  color: #1f8eda;
}

.dg-package-compare img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d8e4f2;
}

.dg-package-compare .dg-over-list {
  margin: 0;
  color: #1f436f;
  min-height: 200px;
}

.dg-package-compare .dg-price {
  margin-top: 0;
}

.dg-package-compare .dg-button {
  margin-top: 10px;
}

.dg-package-compare--featured {
  border-color: #8dc5eb;
  box-shadow: 0 14px 30px rgba(15, 47, 95, 0.09);
}

.dg-button--outline {
  background: transparent;
  color: #006fba;
}
.dg-package-card .dg-button {
  margin-top: auto;
  align-self: flex-start;
}

@media (min-width: 1181px) {
  .dg-package-card h3 span {
    min-height: 2.7em;
  }

  .dg-package-compare header {
    min-height: 11.5rem;
  }
}

/* Accessoires overzichtspagina */
.dg-accessoires-intro {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 2rem;
  align-items: start;
}

.dg-accessoires-intro h1 {
  margin: 0;
  padding-right: 20px;
  border-right: 2px solid #4f6d95;
}

.dg-accessoires-keuzes {
  background: #0a66ad;
}

.dg-accessoire-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1.25rem;
}

.dg-accessoire-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.dg-accessoire-item__image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f6fb;
  border-radius: 8px;
  border: 1px solid #8cb5d8;
  transition: transform .2s ease, box-shadow .2s ease;
}

.dg-accessoire-item__image svg {
  width: 72px;
  height: 72px;
  stroke: #0b4f88;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dg-accessoire-item__label {
  margin-top: .75rem;
  font-size: 1.6rem;
}

.dg-accessoire-item:hover .dg-accessoire-item__image,
.dg-accessoire-item:focus .dg-accessoire-item__image {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(8, 40, 77, 0.25);
}

@media (max-width: 900px) {
  .dg-accessoires-intro {
    grid-template-columns: 1fr;
  }

  .dg-accessoires-intro h1 {
    border-right: 0;
    border-bottom: 2px solid #4f6d95;
    padding-right: 0;
    padding-bottom: 14px;
  }

  .dg-accessoire-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.dg-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.dg-product-detail-box {
  background: #fff;
  border: 1px solid #c8d8eb;
  border-radius: 12px;
  padding: 20px;
}

.dg-product-detail-price {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  color: #0f2f5f;
  font-weight: 800;
}

.dg-product-detail-startup {
  margin: 8px 0 16px;
  color: #1f436f;
  font-weight: 400;
}

@media (max-width: 900px) {
  .dg-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .dg-product-detail-price {
    font-size: 34px;
  }
}


.dg-package-compare__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.dg-compare-table-wrap {
  overflow-x: auto;
  border: 1px solid #d8e4f2;
  border-radius: 14px;
  background: #fff;
}

.dg-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.dg-compare-table th,
.dg-compare-table td {
  border-bottom: 1px solid #e7eef6;
  padding: 14px 16px;
  text-align: left;
  color: #1f436f;
}

.dg-compare-table thead th {
  background: #f3f7fb;
  color: #0f2f5f;
  font-size: 18px;
}

.dg-compare-table thead th span {
  color: #1f8eda;
}

.dg-compare-table tbody tr:nth-child(even) {
  background: #fcfdff;
}

.dg-compare-cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


/* Definitieve fallback voor lokale WP-pagina's waar CTA's nog als inline links in 1 alinea staan. */
.dg-layout .entry-content p:has(> a[href="/producten"], > a[href="/producten/"]):has(> a[href="/persoonsalarmering"], > a[href="/persoonsalarmering/"]):has(> a[href="/contact"], > a[href="/contact/"]) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dg-layout .entry-content p:has(> a[href="/producten"], > a[href="/producten/"]):has(> a[href="/persoonsalarmering"], > a[href="/persoonsalarmering/"]):has(> a[href="/contact"], > a[href="/contact/"]) > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 9999px !important;
  background: #2f3843;
  border: 2px solid #2f3843;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 767px) {
  .dg-layout .entry-content p:has(> a[href="/producten"], > a[href="/producten/"]):has(> a[href="/persoonsalarmering"], > a[href="/persoonsalarmering/"]):has(> a[href="/contact"], > a[href="/contact/"]) > a {
    width: 100%;
  }
}

/*
 * Websitebrede responsive basis.
 * Woorden blijven heel; layouts krijgen zelf genoeg ruimte om eerder om te slaan.
 */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

:where(.dg-layout, .site-main, .site-footer) :is(h1, h2, h3, h4, h5, h6) {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
  text-wrap: balance;
}

:where(.dg-layout, .site-main, .site-footer) :is(p, li, a, button, strong, span) {
  overflow-wrap: normal;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

:where(
  .dg-intro__grid,
  .dg-title-split,
  .dg-split,
  .dg-card-grid,
  .dg-package-grid,
  .dg-packages-grid,
  .dg-product-detail-grid,
  .dg-over-story,
  .dg-over-benefits,
  .dg-over-highlights,
  .dg-contact-split
) > * {
  min-width: 0;
}

.dg-layout img {
  display: block;
  max-width: 100%;
}

.dg-package-card img,
.dg-package-compare img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.dg-split .dg-image-card img,
.dg-over-story .dg-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.dg-product-detail-grid .dg-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid #d8e4f2;
  border-radius: 12px;
}

.dg-product-detail-grid .dg-image-card img.dg-koffer-image-crop {
  object-fit: cover;
}

.dg-package-compare header {
  padding-top: 26px;
}

/*
 * Productvergelijking: houd titel, media, inhoud, prijs en acties per rij gelijk.
 * Het vaste prijsgebied reserveert ook ruimte wanneer er geen normaal tarief is.
 */
@media (min-width: 901px) {
  .dg-package-compare {
    display: grid;
    grid-template-rows: 12.5rem auto minmax(200px, 1fr) 6.25rem auto;
    align-content: stretch;
  }

  .dg-package-compare header {
    height: auto;
    min-height: 0;
  }

  .dg-package-compare .dg-over-list {
    min-height: 0;
  }

  .dg-package-compare .dg-price {
    min-height: 6.25rem;
    align-content: start;
  }
}

@media (min-width: 1025px) {
  .dg-package-card h3 {
    height: 9.5rem;
  }
}

@media (min-width: 768px) {
  .dg-package-compare header {
    height: 12.5rem;
  }
}

@media (max-width: 1180px) and (min-width: 768px) {
  .dg-packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-package-compare header {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .dg-intro__grid h1,
  .dg-layout h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
  }

  .dg-package-card h3,
  .dg-package-compare h2 {
    font-size: clamp(25px, 7.5vw, 30px);
    line-height: 1.14;
  }

  .dg-package-card h3 span,
  .dg-package-compare h2 span {
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.35;
  }

  .dg-package-compare header {
    min-height: 0;
  }

  .dg-package-compare header {
    padding-top: 20px;
  }

  .dg-package-card img,
  .dg-package-compare img,
  .dg-split .dg-image-card img,
  .dg-over-story .dg-image-card img,
  .dg-product-detail-grid .dg-image-card img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 420px) {
  .dg-package-card__promo,
  .dg-package-compare__promo {
    position: static;
    align-self: flex-start;
    margin-bottom: -8px;
  }

  .dg-package-compare header {
    padding-top: 0;
  }
}


/* Harde normalisatie: alle CTA/button varianten binnen DomioGuard layout als pill tonen. */
.dg-layout a.dg-button,
.dg-layout .wp-block-button__link,
.dg-layout .wp-element-button,
.dg-layout a.wp-element-button,
.dg-layout .elementor-button,
.dg-layout a[class*="button"],
.dg-layout button[class*="button"] {
  border-radius: 9999px !important;
}


/* Echte screenshot-fix: ook wrappers/pseudo-elementen van CTA's afronden. */
.dg-layout .dg-cta-actions--local > *,
.dg-layout .dg-cta-actions--local > *::before,
.dg-layout .dg-cta-actions--local > *::after,
.dg-layout .dg-cta-actions--local > * > *,
.dg-layout .dg-cta-actions--local > * > *::before,
.dg-layout .dg-cta-actions--local > * > *::after {
  border-radius: 9999px !important;
}

.dg-layout .dg-cta-actions--local > * {
  overflow: hidden;
}


/* Definitieve, concrete fix voor lokale CTA-links in content (3 specifieke doelen). */
.dg-layout .dg-section .dg-wrap :is(a[href="/producten"], a[href="/producten/"], a[href="/persoonsalarmering"], a[href="/persoonsalarmering/"], a[href="/contact"], a[href="/contact/"]) {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 26px;
  border-radius: 9999px !important;
  background: #2f3843;
  border: 2px solid #2f3843;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .dg-layout .dg-section .dg-wrap :is(a[href="/producten"], a[href="/producten/"], a[href="/persoonsalarmering"], a[href="/persoonsalarmering/"], a[href="/contact"], a[href="/contact/"]) {
    width: 100%;
  }
}


/* Mobiele failsafe: voorkom verborgen secties door scroll-reveal timing issues. */
@media (max-width: 767px) {
  .dg-reveal-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/*
 * DomioGuard 2026: Dutch precision, human reassurance.
 * Deze laag geeft bestaande pagina's een consistente identiteit zonder routes
 * of formulierfunctionaliteit te wijzigen.
 */
:root {
  --dg-ink: #172331;
  --dg-ink-soft: #405064;
  --dg-blue: #0768c9;
  --dg-blue-dark: #0a376b;
  --dg-teal: #087f78;
  --dg-coral: #d95d4f;
  --dg-line: #d8e0e8;
  --dg-surface: #ffffff;
  --dg-surface-soft: #f3f6f8;
}

.dg-layout {
  color: var(--dg-ink);
  background: var(--dg-surface);
}

.dg-wrap {
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
}

.dg-topbar {
  background: var(--dg-ink);
  color: #fff;
}

.dg-topbar .dg-wrap {
  min-height: 38px;
  justify-content: space-between;
  gap: 24px;
}

.dg-topbar__promise {
  margin: 0;
  color: #d9e4ee;
  font-size: 12px;
  line-height: 1.3;
}

.dg-topbar__actions {
  flex-wrap: nowrap;
}

.dg-topbar__phone {
  border: 0;
  border-radius: 0;
  padding: 7px 4px;
}

.dg-topbar__cta {
  background: var(--dg-teal);
  padding: 8px 14px;
  border-radius: 4px;
}

.dg-site-search,
.dg-site-search--topbar {
  border: 1px solid #aab8c6;
  border-radius: 4px;
}

.dg-site-search--topbar {
  border-color: #66798c;
}

.dg-site-search--topbar .dg-site-search__input {
  min-width: 210px;
}

.dg-nav {
  border-bottom-color: var(--dg-line);
}

.dg-nav__inner {
  min-height: 76px;
}

.dg-brand img {
  height: 78px;
  max-width: 250px;
}

.dg-menu {
  gap: 22px;
}

.dg-menu a {
  color: var(--dg-ink);
  font-size: 14px;
}

.dg-menu > li > a {
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  border-bottom: 3px solid transparent;
}

.dg-menu > li > a:hover,
.dg-menu > li > a:focus-visible {
  color: var(--dg-blue);
  border-bottom-color: var(--dg-blue);
}

.dg-submenu {
  min-width: 300px;
  border-radius: 0 0 6px 6px;
  border-color: var(--dg-line);
  box-shadow: 0 16px 34px rgba(23, 35, 49, 0.14);
}

.dg-benefits {
  border-bottom: 0;
  background: var(--dg-surface-soft);
}

.dg-benefits ul {
  min-height: 36px;
  justify-content: center;
  gap: 0;
  color: var(--dg-ink-soft);
  font-size: 12px;
}

.dg-benefits li {
  padding: 0 24px;
  border-right: 1px solid #c4cfd9;
}

.dg-benefits li:last-child {
  border-right: 0;
}

.dg-hero {
  --dg-hero-min-height: min(76vh, 790px);
  background: #121a23;
}

.dg-hero img {
  object-position: 50% 58%;
}

.dg-hero__overlay {
  background: rgba(10, 18, 27, 0.58);
}

.dg-hero__content {
  max-width: 1240px;
  padding-top: 48px;
  padding-bottom: 72px;
  justify-content: flex-end;
}

.dg-hero__kicker,
.dg-eyebrow {
  margin: 0 0 12px;
  color: #89ddd4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dg-hero__content h1 {
  max-width: 620px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.dg-hero__tagline {
  margin: 16px 0 0 !important;
  color: #fff !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  line-height: 1.2 !important;
  font-weight: 700;
}

.dg-hero__lead {
  max-width: 620px;
  margin-top: 14px;
  color: #e0e8ee !important;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.5;
}

.dg-button,
.dg-layout a.dg-button,
.dg-layout .wp-block-button__link,
.dg-layout .wp-element-button,
.dg-layout a.wp-element-button,
.dg-layout .elementor-button,
.dg-layout a[class*="button"],
.dg-layout button[class*="button"] {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px !important;
  background: var(--dg-blue);
  border-color: var(--dg-blue);
  padding: 12px 20px;
  letter-spacing: 0;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.dg-button:hover,
.dg-button:focus-visible {
  background: var(--dg-blue-dark);
  border-color: var(--dg-blue-dark);
  transform: translateY(-1px);
}

.dg-button--outline,
.dg-layout a.dg-button--outline {
  background: transparent;
  color: var(--dg-blue);
  border-color: var(--dg-blue);
}

.dg-button--hero-secondary,
.dg-layout a.dg-button--hero-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.dg-button--hero-secondary:hover,
.dg-button--hero-secondary:focus-visible {
  background: #fff;
  color: var(--dg-ink);
  border-color: #fff;
}

.dg-quality-strip {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--dg-line);
}

.dg-quality-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.dg-quality-strip li {
  min-width: 0;
  padding: 23px 24px;
  border-right: 1px solid var(--dg-line);
}

.dg-quality-strip li:first-child {
  border-left: 1px solid var(--dg-line);
}

.dg-quality-strip strong,
.dg-quality-strip span {
  display: block;
}

.dg-quality-strip strong {
  margin-bottom: 4px;
  color: var(--dg-ink);
  font-size: 15px;
}

.dg-quality-strip span {
  color: var(--dg-ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.dg-section {
  padding: 88px 0;
}

.dg-section--light,
.dg-section--packages,
.dg-section--reviews {
  background: var(--dg-surface-soft);
}

.dg-layout h2 {
  color: var(--dg-ink);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.dg-layout h3 {
  color: var(--dg-ink);
  letter-spacing: 0;
}

.dg-layout p,
.dg-layout ol {
  color: var(--dg-ink-soft);
}

.dg-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.dg-section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 19px;
}

.dg-section-heading .dg-eyebrow,
.dg-scenario-intro .dg-eyebrow,
.dg-made-here__content .dg-eyebrow {
  color: var(--dg-teal);
}

.dg-intro {
  background: #fff;
  padding-top: 42px;
  padding-bottom: 78px;
}

.dg-breadcrumb {
  margin-bottom: 42px;
  color: #687789;
  font-size: 13px;
}

.dg-breadcrumb a {
  color: var(--dg-blue);
}

.dg-intro__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
}

.dg-intro__grid h1,
.dg-intro__grid h2 {
  margin: 0;
  padding-right: 36px;
  border-right: 3px solid var(--dg-teal);
  color: var(--dg-ink);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
}

.dg-intro__grid p {
  color: var(--dg-ink-soft);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
}

.dg-persoonsalarmering-hero .dg-hero__content > * {
  width: min(100%, 610px);
  margin-left: auto;
}

.dg-persoonsalarmering-hero .dg-hero__actions {
  justify-content: flex-start;
}

.dg-persoonsalarmering-hero .dg-hero__content h1 {
  font-size: clamp(30px, 3.75vw, 54px);
}

.dg-persoonsalarmering-hero .dg-hero__tagline {
  margin-left: auto !important;
}

.dg-persoonsalarmering-hero img {
  object-position: center 48%;
}

.dg-over-hero .dg-hero__content {
  justify-content: flex-end;
}

.dg-over-hero .dg-hero__content > * {
  width: min(100%, 650px);
}

.dg-over-hero img {
  object-position: center 45%;
}

.dg-intro__copy > p:first-child {
  margin-top: 0;
}

.dg-intro__copy > p:not(:first-child) {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--dg-ink);
  font-size: 18px;
}

.dg-intro__copy .dg-over-list {
  margin-top: 8px;
}

.dg-faq-list {
  width: min(100%, 920px);
}

.dg-faq-list details {
  border-top: 1px solid var(--dg-line);
}

.dg-faq-list details:last-child {
  border-bottom: 1px solid var(--dg-line);
}

.dg-faq-list summary {
  position: relative;
  padding: 22px 54px 22px 0;
  color: var(--dg-ink);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.dg-faq-list summary::-webkit-details-marker {
  display: none;
}

.dg-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--dg-blue);
  border: 1px solid var(--dg-line);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 500;
}

.dg-faq-list details[open] summary::after {
  content: "−";
}

.dg-faq-list details p {
  max-width: 780px;
  margin: -4px 0 24px;
  padding-right: 48px;
}

.dg-feature {
  border-radius: 6px;
  background: #fff;
  border-color: var(--dg-line);
}

.dg-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dg-line);
  border-bottom: 1px solid var(--dg-line);
}

.dg-process li {
  min-width: 0;
  padding: 32px 34px 34px;
  border-right: 1px solid var(--dg-line);
}

.dg-process li:first-child {
  padding-left: 0;
}

.dg-process li:last-child {
  padding-right: 0;
  border-right: 0;
}

.dg-process li > span {
  display: block;
  margin-bottom: 22px;
  color: var(--dg-blue);
  font-size: 14px;
  font-weight: 800;
}

.dg-process strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dg-ink);
  font-size: 22px;
  line-height: 1.25;
}

.dg-process p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.dg-process-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.dg-text-link {
  color: var(--dg-blue);
  font-weight: 700;
  text-underline-offset: 4px;
}

.dg-section--scenarios {
  background: #132333;
}

.dg-scenario-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.dg-scenario-intro h2,
.dg-scenario-intro > p {
  color: #fff;
}

.dg-scenario-intro > p:not(.dg-eyebrow) {
  color: #cbd7e1;
}

.dg-video-card--compact {
  margin-top: 32px;
  border-radius: 6px;
}

.dg-video-card--compact img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.dg-video-card--compact span {
  font-size: 20px;
}

.dg-signal-list {
  border-top: 1px solid #4b5b6b;
}

.dg-signal-list article {
  display: grid;
  grid-template-columns: 92px minmax(150px, 0.8fr) minmax(220px, 1.2fr);
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid #4b5b6b;
}

.dg-signal-list span {
  color: #89ddd4;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dg-signal-list h3,
.dg-signal-list p {
  margin: 0;
  color: #fff;
}

.dg-signal-list h3 {
  font-size: 19px;
  line-height: 1.3;
}

.dg-signal-list p {
  color: #cbd7e1;
  font-size: 15px;
  line-height: 1.5;
}

.dg-section--made-here {
  background: #fff;
}

.dg-made-here {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 74px;
  align-items: center;
}

.dg-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dg-line);
}

.dg-check-list li {
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--dg-line);
  color: var(--dg-ink);
  font-weight: 700;
}

.dg-check-list li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--dg-line);
}

.dg-made-here__media {
  position: relative;
  margin: 0;
}

.dg-made-here__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.dg-made-here__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72%, 420px);
  padding: 20px 22px;
  background: var(--dg-teal);
  color: #fff;
}

.dg-made-here__media figcaption strong,
.dg-made-here__media figcaption span {
  display: block;
}

.dg-made-here__media figcaption span {
  margin-top: 4px;
  color: #d9f0ed;
  font-size: 14px;
  line-height: 1.4;
}

.dg-title-split > :last-child {
  border-left-color: var(--dg-teal);
}

.dg-package-card,
.dg-practice-signal,
.dg-review-card,
.dg-product-detail-grid .dg-image-card img {
  border-radius: 8px;
}

.dg-package-card {
  padding: 22px;
  border-color: var(--dg-line);
  box-shadow: none;
}

.dg-package-card--featured {
  border-color: var(--dg-blue);
}

.dg-package-card img {
  border-radius: 6px;
  border: 0;
}

.dg-package-card__badge,
.dg-package-compare__badge,
.dg-package-card__promo,
.dg-package-compare__promo {
  border-radius: 4px;
}

.dg-package-card h3 span {
  color: var(--dg-blue);
}

.dg-section--blue,
.dg-section--cta-soft {
  background: #e8f0f4;
}

.dg-section--dark,
.dg-section--cta {
  background: var(--dg-ink);
}

.dg-review-card--google {
  box-shadow: none;
}

.dg-contact-split .dg-image-card img {
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .dg-topbar__promise {
    display: none;
  }

  .dg-topbar .dg-wrap {
    justify-content: center;
  }

  .dg-site-search--topbar .dg-site-search__input {
    min-width: 170px;
  }

  .dg-menu {
    gap: 12px;
  }

  .dg-menu a {
    font-size: 12px;
  }

  .dg-quality-strip ul {
    grid-template-columns: 1fr 1fr;
  }

  .dg-quality-strip li:nth-child(2) {
    border-right: 0;
  }

  .dg-quality-strip li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dg-line);
  }

  .dg-process li {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dg-scenario-layout,
  .dg-made-here {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .dg-signal-list article {
    grid-template-columns: 80px minmax(170px, 0.8fr) minmax(200px, 1.2fr);
  }
}

@media (max-width: 767px) {
  .dg-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dg-topbar .dg-wrap {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .dg-topbar__actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .dg-topbar__phone {
    display: none;
  }

  .dg-site-search--topbar {
    display: none;
  }

  .dg-topbar__cta {
    width: auto;
    padding: 8px 10px;
  }

  .dg-nav__inner {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dg-brand img {
    height: 62px;
  }

  .dg-menu {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    padding-bottom: 5px;
  }

  .dg-menu > li {
    flex: 0 0 auto;
    width: auto;
  }

  .dg-menu > li > a,
  .dg-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    border: 1px solid var(--dg-line);
    border-radius: 4px;
    background: #fff;
    width: auto;
    white-space: nowrap;
    font-size: 12px;
  }

  .dg-benefits {
    display: none;
  }

  .dg-hero {
    --dg-hero-min-height: min(72vh, 680px);
  }

  .dg-hero img {
    object-position: 53% 50%;
  }

  .dg-hero__overlay {
    background: rgba(8, 15, 23, 0.66);
  }

  .dg-hero__content {
    justify-content: flex-end;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .dg-hero__content h1 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .dg-hero__tagline {
    font-size: 21px !important;
  }

  .dg-hero__lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .dg-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .dg-quality-strip ul {
    grid-template-columns: 1fr;
  }

  .dg-quality-strip li,
  .dg-quality-strip li:first-child {
    padding: 16px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--dg-line);
  }

  .dg-quality-strip li:last-child {
    border-bottom: 0;
  }

  .dg-section {
    padding: 62px 0;
  }

  .dg-section-heading {
    margin-bottom: 32px;
  }

  .dg-intro {
    padding-top: 30px;
    padding-bottom: 56px;
  }

  .dg-breadcrumb {
    margin-bottom: 28px;
  }

  .dg-intro__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dg-intro__grid h1,
  .dg-intro__grid h2 {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 3px solid var(--dg-teal);
  }

  .dg-persoonsalarmering-hero .dg-hero__content > * {
    margin-left: 0;
  }

  .dg-persoonsalarmering-hero .dg-hero__tagline {
    margin-left: 0 !important;
  }

  .dg-persoonsalarmering-hero .dg-hero__content h1 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .dg-over-hero .dg-hero__content > * {
    width: 100%;
  }

  .dg-faq-list summary {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-right: 46px;
  }

  .dg-faq-list details p {
    padding-right: 0;
  }

  .dg-process {
    grid-template-columns: 1fr;
  }

  .dg-process li,
  .dg-process li:first-child,
  .dg-process li:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dg-line);
  }

  .dg-process li:last-child {
    border-bottom: 0;
  }

  .dg-process li > span {
    margin-bottom: 10px;
  }

  .dg-process-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .dg-text-link {
    text-align: center;
  }

  .dg-signal-list article {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }

  .dg-check-list {
    grid-template-columns: 1fr;
  }

  .dg-check-list li,
  .dg-check-list li:nth-child(even) {
    padding: 14px 0;
    border-left: 0;
  }

  .dg-made-here__media figcaption {
    position: static;
    width: 100%;
  }

  .dg-package-card h3 {
    height: auto;
  }
}
