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

.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;
}

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

.dg-brand img {
  width: auto;
  height: 78px;
  max-width: 280px;
  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: 10px;
  margin-bottom: -10px;
}

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

.dg-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  margin: 0;
  padding: 10px 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;
  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-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 img {
  width: 100%;
  height: min(84vh, 1060px);
  object-fit: cover;
  display: block;
}

.dg-hero--compact img {
  height: min(48vh, 520px);
  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: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 560px;
}

.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: #fff;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.1;
  max-width: 520px;
}

.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-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;
}

.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-button--ghost {
  background: transparent;
  border: 1px solid #fff;
}

@media (max-width: 1024px) {
  .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: 12px;
    padding-bottom: 12px;
  }

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

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

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

  .dg-topbar__actions {
    width: 100%;
  }

  .dg-topbar__phone,
  .dg-topbar__link,
  .dg-topbar__cta {
    width: 100%;
    text-align: center;
  }

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

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

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

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

  .dg-benefits li {
    width: 100%;
  }

  .dg-hero img {
    height: auto;
    min-height: 60vh;
  }

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

  .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;
  }

  .dg-menu__has-submenu .dg-submenu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    width: 100%;
    display: block;
    box-shadow: none;
  }


  .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 {
  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 {
  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-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;
  left: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  max-width: 70%;
}

.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 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.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-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #d8e2ef;
}

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

.dg-package-card h3 {
  margin: 0 0 14px;
  font-size: 34px;
}

.dg-package-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f3f6fa;
  border-radius: 8px;
  margin-bottom: 14px;
}

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

.dg-price {
  font-weight: 700;
  margin-bottom: 14px;
}

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

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

.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;
}

.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;
}

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

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

.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;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

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

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

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

  .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-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-product-eyebrow {
  margin: 0 0 10px;
  color: #1f5fbf;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
}
