@charset "UTF-8";

:root {
  --dk-blue: #0757d9;
  --dk-blue-deep: #073b9c;
  --dk-navy: #061a3a;
  --dk-sky: #dcecff;
  --dk-pale: #f3f8ff;
  --dk-ink: #0b1f3a;
  --dk-muted: #4c6078;
  --dk-line: #ccd9e7;
  --dk-white: #ffffff;
  --dk-success: #10895d;
}

.dkde-landing-template {
  margin: 0;
  background: #fff;
}

.dkde-landing-template #wpadminbar + .dk-site .dk-header {
  top: 32px;
}

.dk-site,
.dk-site *,
.dk-site *::before,
.dk-site *::after {
  box-sizing: border-box;
}

.dk-site {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--dk-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.dk-site h1,
.dk-site h2,
.dk-site h3,
.dk-site p,
.dk-site figure,
.dk-site blockquote {
  margin: 0;
}

.dk-site h1,
.dk-site h2,
.dk-site h3,
.dk-site summary strong {
  text-wrap: balance;
  overflow-wrap: break-word;
}

.dk-site p,
.dk-site small,
.dk-site blockquote,
.dk-site .dk-checklist strong {
  text-wrap: pretty;
}

.dk-site h1,
.dk-site h2,
.dk-site h3,
.dk-site strong,
.dk-site b {
  font-family: inherit;
}

.dk-site img {
  display: block;
  max-width: 100%;
}

.dk-site a {
  color: inherit;
  text-decoration: none;
}

.dk-site button,
.dk-site input,
.dk-site select,
.dk-site textarea {
  margin: 0;
  font: inherit;
}

.dk-site button,
.dk-site select {
  cursor: pointer;
}

.dk-site :focus-visible {
  outline: 3px solid #6eb6ff;
  outline-offset: 3px;
}

.dk-site [id] {
  scroll-margin-top: 88px;
}

.dk-shell {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.screen-reader-text,
.dk-skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dk-skip-link:focus {
  z-index: 99999;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  color: #fff;
  background: var(--dk-navy);
  border-radius: 8px;
}

.dk-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.dk-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #65b7ff, var(--dk-blue));
  transform: scaleX(0);
  transform-origin: left;
}

.dk-header {
  position: absolute;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  color: var(--dk-ink);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.dk-header.is-fixed {
  position: fixed;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 35px rgba(4, 35, 82, .08);
  backdrop-filter: blur(18px);
}

.dk-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 43, 91, .1);
}

.dk-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 11px;
  letter-spacing: -.02em;
}

.dk-brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--dk-blue), var(--dk-blue-deep));
  border-radius: 13px 13px 13px 3px;
  box-shadow: 0 9px 22px rgba(10, 88, 232, .2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.dk-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dk-brand strong {
  font-size: 17px;
  font-weight: 820;
  line-height: 1.1;
}

.dk-brand strong span {
  color: var(--dk-blue);
}

.dk-brand small {
  color: var(--dk-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dk-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.dk-nav > a:not(.dk-button) {
  position: relative;
  color: #243a53;
  font-size: 14px;
  font-weight: 700;
}

.dk-nav > a:not(.dk-button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--dk-blue);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.dk-nav > a:hover::after,
.dk-nav > a.is-active::after {
  transform: scaleX(1);
}

.dk-nav > a.is-active:not(.dk-button) {
  color: var(--dk-blue-deep);
}

.dk-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  color: var(--dk-ink);
  background: transparent;
}

.dk-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.dk-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 23px;
  color: #fff !important;
  background: var(--dk-blue);
  border: 1px solid var(--dk-blue);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(10, 88, 232, .2);
  font-size: 14px;
  font-weight: 790;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.dk-button span {
  font-size: 17px;
  transition: transform .2s ease;
}

.dk-button:hover {
  background: #064bc9;
  box-shadow: 0 16px 34px rgba(10, 88, 232, .28);
  transform: translateY(-2px);
}

.dk-button:hover span {
  transform: translate(2px, -2px);
}

.dk-button--small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 10px;
  box-shadow: none;
  font-size: 12px;
}

.dk-button--outline {
  color: var(--dk-blue) !important;
  background: transparent;
  box-shadow: none;
}

.dk-button--outline:hover {
  color: #fff !important;
  background: var(--dk-blue);
}

.dk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--dk-blue) !important;
  border-bottom: 1px solid rgba(10, 88, 232, .28);
  font-size: 14px;
  font-weight: 790;
  transition: gap .2s ease;
}

.dk-text-link:hover {
  gap: 21px;
}

.dk-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px !important;
  color: var(--dk-blue);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dk-eyebrow span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.dk-eyebrow--light {
  color: #b9dcff;
}

.dk-section-heading h2,
.dk-calculator-intro h2,
.dk-about__copy h2,
.dk-documents h2,
.dk-faq-layout aside h2,
.dk-contact-copy h2 {
  max-width: 980px;
  color: var(--dk-ink);
  font-size: clamp(36px, 4.1vw, 60px);
  font-weight: 770;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.dk-site h1 em,
.dk-site h2 em {
  color: var(--dk-blue);
  font-style: normal;
  font-weight: 460;
}

.dk-hero {
  position: relative;
  min-height: 820px;
  padding: 145px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 78%, rgba(87,164,255,.13), transparent 27%),
    linear-gradient(115deg, #fff 0%, #fff 57%, #eff7ff 57%, #f7fbff 100%);
}

.dk-hero::before {
  position: absolute;
  top: 118px;
  right: -2px;
  width: 39%;
  height: 56%;
  opacity: .25;
  background-image: radial-gradient(#3e8ce6 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(120deg, transparent 0, #000 35%, transparent 90%);
}

.dk-hero::after {
  position: absolute;
  top: -35%;
  left: -22%;
  width: 38%;
  height: 170%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(113, 182, 255, .08), transparent);
  content: "";
  transform: rotate(12deg);
  animation: dk-hero-sweep 12s ease-in-out infinite;
}

.dk-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.dk-orb--one {
  top: 100px;
  right: 44%;
  width: 190px;
  height: 190px;
  background: rgba(123, 188, 255, .1);
  animation: dk-drift 8s ease-in-out infinite;
}

.dk-orb--two {
  right: 5%;
  bottom: 3%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(60, 140, 226, .17);
  animation: dk-drift 11s ease-in-out infinite reverse;
}

.dk-hero__grid {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  gap: clamp(50px, 7vw, 110px);
}

.dk-hero__copy {
  z-index: 2;
  padding: 40px 0;
}

.dk-hero h1 {
  max-width: 800px;
  color: var(--dk-ink);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 790;
  letter-spacing: -.065em;
  line-height: .98;
}

.dk-hero h1 em {
  display: inline-block;
  margin-top: 10px;
  font-size: .73em;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.dk-hero__lead {
  max-width: 640px;
  margin-top: 34px !important;
  color: #40556d;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
}

.dk-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.dk-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 27px;
  margin-top: 43px;
  color: #344c66;
  font-size: 13px;
  font-weight: 700;
}

.dk-hero__trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dk-hero__trust b {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--dk-blue);
  background: #e5f0ff;
  border-radius: 50%;
  font-size: 11px;
}

.dk-hero__visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 540px);
}

.dk-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: .79;
  overflow: hidden;
  background: #e7f1fc;
  border: 9px solid rgba(255,255,255,.8);
  border-radius: 230px 230px 26px 26px;
  box-shadow: 0 30px 80px rgba(8, 54, 118, .16);
}

.dk-photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(6, 26, 58, .16));
  content: "";
}

.dk-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.015);
  transition: transform .7s ease;
}

.dk-photo-frame:hover img {
  transform: scale(1.05);
}

.dk-photo-frame__glow {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  box-shadow: 0 0 90px 28px rgba(84, 163, 255, .16);
  animation: dk-glow 6s ease-in-out infinite;
}

.dk-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  width: min(295px, 70%);
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 15px;
  box-shadow: 0 18px 42px rgba(7, 40, 84, .15);
  backdrop-filter: blur(12px);
}

.dk-float-card--top {
  top: 17%;
  left: -64px;
  animation: dk-float 5s ease-in-out infinite;
}

.dk-float-card--bottom {
  right: -24px;
  bottom: 10%;
  animation: dk-float 6s ease-in-out 1s infinite;
}

.dk-float-card__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--dk-blue);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 850;
}

.dk-float-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dk-float-card strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.dk-float-card small {
  margin-top: 3px;
  color: #465d76;
  font-size: 11px;
  line-height: 1.4;
}

.dk-status-dot {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0 11px;
  background: var(--dk-success);
  border: 4px solid #ddf8ed;
  border-radius: 50%;
  box-sizing: content-box;
}

.dk-status-dot::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(25, 169, 115, .35);
  border-radius: 50%;
  content: "";
  animation: dk-pulse 2s ease-out infinite;
}

.dk-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--dk-blue);
}

.dk-marquee > div {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
  padding: 15px 25px;
  animation: dk-marquee 30s linear infinite;
}

.dk-marquee:hover > div,
.dk-marquee:focus-within > div {
  animation-play-state: paused;
}

.dk-marquee span {
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dk-marquee b {
  color: #d2eaff;
  font-size: 10px;
}

.dk-section {
  position: relative;
  padding: clamp(90px, 9vw, 145px) 0;
}

.dk-intro {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  gap: clamp(60px, 9vw, 140px);
}

.dk-intro__copy {
  padding-top: 45px;
  color: #455b72;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.8;
}

.dk-intro__copy p + p {
  margin-top: 25px;
}

.dk-section--bluewash {
  overflow: hidden;
  background: linear-gradient(145deg, #f5f9ff, #eaf4ff);
}

.dk-section--bluewash::before {
  position: absolute;
  top: -230px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(10, 88, 232, .12);
  border-radius: 50%;
  content: "";
}

.dk-section-heading--center {
  max-width: 830px;
  margin: 0 auto 65px;
  text-align: center;
}

.dk-section-heading--center .dk-eyebrow {
  justify-content: center;
}

.dk-section-heading--center > p:last-child {
  max-width: 690px;
  margin: 24px auto 0;
  color: #4a6078;
  font-size: 17px;
  line-height: 1.75;
}

.dk-services {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dk-service-card {
  position: relative;
  min-height: 405px;
  padding: 33px 28px 28px;
  overflow: hidden;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(199, 217, 238, .9);
  border-radius: 19px;
  box-shadow: 0 18px 45px rgba(14, 68, 130, .06);
  transition: border .25s ease, box-shadow .25s ease, transform .25s ease;
}

.dk-service-card::before {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: rgba(10, 88, 232, .04);
  border-radius: 50%;
  content: "";
  transition: transform .3s ease;
}

.dk-service-card:hover {
  z-index: 2;
  border-color: rgba(10, 88, 232, .45);
  box-shadow: 0 27px 60px rgba(14, 68, 130, .12);
  transform: translateY(-7px);
}

.dk-service-card:hover::before {
  transform: scale(2.5);
}

.dk-service-card--feature {
  color: #fff;
  background: var(--dk-blue);
  border-color: var(--dk-blue);
}

.dk-service-card--feature::before {
  background: rgba(255,255,255,.07);
}

.dk-service-card__number {
  position: absolute;
  top: 28px;
  right: 26px;
  color: #5f7288;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dk-service-card--feature .dk-service-card__number {
  color: #e3f1ff;
}

.dk-service-card__symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 55px;
  color: var(--dk-blue);
  background: #edf5ff;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 650;
}

.dk-service-card--feature .dk-service-card__symbol {
  color: #fff;
  background: rgba(255,255,255,.13);
}

.dk-service-card h3 {
  position: relative;
  font-size: 23px;
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.dk-service-card p {
  position: relative;
  margin-top: 17px;
  color: #4d637b;
  font-size: 15px;
  line-height: 1.75;
}

.dk-service-card--feature p {
  color: #edf6ff;
}

.dk-service-card a {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  color: var(--dk-blue);
  border-top: 1px solid rgba(113, 140, 171, .22);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dk-service-card--feature a {
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.dk-case-section {
  position: relative;
  padding: clamp(95px, 9vw, 145px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 4%, rgba(47, 135, 255, .27), transparent 28%),
    linear-gradient(135deg, #051a3c 0%, #062b67 100%);
}

.dk-case-section::before {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(126, 190, 255, .15);
  border-radius: 50%;
  content: "";
}

.dk-section-heading--case {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr);
  column-gap: clamp(45px, 8vw, 120px);
}

.dk-section-heading--case .dk-eyebrow {
  grid-column: 1 / -1;
}

.dk-section-heading--case h2 {
  max-width: 850px;
  color: #fff;
}

.dk-section-heading--case h2 em {
  color: #8dc9ff;
}

.dk-section-heading--case > p:last-child {
  color: #d0dfef;
  font-size: 15px;
  line-height: 1.8;
}

.dk-case-card {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  color: var(--dk-ink);
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0, 9, 28, .3);
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
}

.dk-case-card__visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #edf4fc;
}

.dk-case-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 23, 52, .72));
  content: "";
}

.dk-case-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .7s ease;
}

.dk-case-card:hover .dk-case-card__visual img {
  transform: scale(1.025);
}

.dk-case-card__visual > span {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.dk-case-card__visual > span b {
  padding: 5px 8px;
  color: #fff;
  background: var(--dk-blue);
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dk-case-card__content {
  padding: clamp(36px, 5vw, 66px);
}

.dk-case-card__label {
  color: var(--dk-blue);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dk-case-card__content h3 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.dk-case-card__lead {
  max-width: 780px;
  margin-top: 20px !important;
  color: #4d627a;
  font-size: 15px;
  line-height: 1.8;
}

.dk-case-comparison {
  display: grid;
  margin-top: 28px;
  align-items: stretch;
  grid-template-columns: 1fr 40px 1fr;
}

.dk-case-comparison > div {
  display: flex;
  min-height: 125px;
  justify-content: center;
  flex-direction: column;
  padding: 21px;
  background: #f3f7fc;
  border: 1px solid #dfe8f2;
  border-radius: 13px;
}

.dk-case-comparison > b {
  display: grid;
  place-items: center;
  color: var(--dk-blue);
  font-size: 18px;
}

.dk-case-comparison small {
  color: #5f7288;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dk-case-comparison strong {
  margin-top: 4px;
  color: var(--dk-ink);
  font-size: 30px;
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.dk-case-comparison strong i {
  color: #6d7f93;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
}

.dk-case-comparison span {
  margin-top: 5px;
  color: #566b82;
  font-size: 11px;
}

.dk-case-steps {
  display: grid;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--dk-line);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dk-case-steps > span {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 9px;
}

.dk-case-steps b {
  color: var(--dk-blue);
  font-size: 10px;
  letter-spacing: .07em;
  grid-row: 1 / 3;
}

.dk-case-steps strong {
  font-size: 13px;
  font-weight: 790;
}

.dk-case-steps small {
  margin-top: 5px;
  color: #5c7087;
  font-size: 11px;
  line-height: 1.55;
}

.dk-case-lesson {
  display: grid;
  margin-top: 25px;
  padding: 18px 20px;
  background: #eaf4ff;
  border-left: 3px solid var(--dk-blue);
  border-radius: 5px 11px 11px 5px;
  grid-template-columns: 155px 1fr;
  gap: 16px;
}

.dk-case-lesson b {
  color: var(--dk-blue-deep);
  font-size: 12px;
  font-weight: 820;
}

.dk-case-lesson p {
  color: #3f5b77;
  font-size: 12px;
  line-height: 1.65;
}

.dk-case-disclaimer {
  margin-top: 14px !important;
  color: #65778b;
  font-size: 10px;
  line-height: 1.55;
}

.dk-section--process {
  background: #fff;
}

.dk-section--process .dk-section-heading {
  max-width: 800px;
  margin-bottom: 75px;
}

.dk-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.dk-process article > span {
  color: var(--dk-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
}

.dk-process__line {
  position: relative;
  height: 1px;
  margin: 20px 0 27px;
  background: var(--dk-line);
}

.dk-process__line::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--dk-blue);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6px #e8f2ff;
}

.dk-process__line::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--dk-blue), #74b7ff);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.2,.75,.25,1) .15s;
}

.dk-process article.is-visible .dk-process__line::after {
  transform: scaleX(1);
}

.dk-process h3 {
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -.03em;
}

.dk-process p {
  margin-top: 14px;
  color: var(--dk-muted);
  font-size: 15px;
  line-height: 1.75;
}

.dk-calculator-section {
  position: relative;
  padding: clamp(90px, 9vw, 145px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 116, 236, .42), transparent 35%),
    linear-gradient(135deg, #061c42 0%, #052a67 58%, #073b91 100%);
}

.dk-calculator-section::before,
.dk-calculator-section::after {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(118, 183, 255, .12);
  border-radius: 50%;
  content: "";
}

.dk-calculator-section::before {
  top: -220px;
  left: 35%;
}

.dk-calculator-section::after {
  right: -210px;
  bottom: -230px;
}

.dk-calculator-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, .76fr) minmax(560px, 1.24fr);
  gap: clamp(55px, 8vw, 120px);
}

.dk-calculator-intro h2 {
  color: #fff;
  font-size: clamp(40px, 4vw, 58px);
}

.dk-calculator-intro h2 em {
  color: #83c4ff;
}

.dk-calculator-intro > p:not(.dk-eyebrow) {
  margin-top: 26px;
  color: #d1e1f1;
  font-size: 16px;
  line-height: 1.8;
}

.dk-mini-note {
  display: flex;
  gap: 13px;
  margin-top: 34px;
  padding: 17px 19px;
  color: #d4e3f2;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.65;
}

.dk-mini-note b {
  display: grid;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #fff;
  background: rgba(91, 171, 255, .24);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.dk-calculator {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 23px;
  box-shadow: 0 35px 80px rgba(0, 10, 30, .25);
}

.dk-calculator__inputs {
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 40px 38px;
  color: var(--dk-ink);
}

.dk-calculator__inputs label > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #3f556e;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.dk-calculator__inputs output {
  color: var(--dk-ink);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -.03em;
  text-transform: none;
}

.dk-calculator input[type="range"] {
  width: 100%;
  height: 5px;
  padding: 0;
  appearance: none;
  background: linear-gradient(to right, var(--dk-blue) 0 var(--dk-fill, 50%), #dce7f2 var(--dk-fill, 50%) 100%);
  border: 0;
  border-radius: 10px;
  outline: none;
}

.dk-calculator input[type="range"]:focus-visible {
  outline: 3px solid rgba(7, 87, 217, .24);
  outline-offset: 7px;
}

.dk-calculator input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  appearance: none;
  background: #fff;
  border: 5px solid var(--dk-blue);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(5, 64, 155, .2);
}

.dk-calculator input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 5px solid var(--dk-blue);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(5, 64, 155, .2);
}

.dk-calculator__inputs label > small {
  display: flex;
  justify-content: space-between;
  margin-top: 9px;
  color: #657890;
  font-size: 10px;
}

.dk-calculator__inputs i {
  font-style: normal;
}

.dk-calculator__result {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 38px 32px;
  color: #fff;
  background: linear-gradient(150deg, #0b63f0, #074abb);
}

.dk-calculator__result > p {
  color: #e2f0ff;
  font-size: 12px;
  font-weight: 740;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.dk-calculator__result > strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1;
  white-space: nowrap;
}

.dk-calculator__result > div {
  display: grid;
  margin: 31px 0 26px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  grid-template-columns: 1fr 1fr;
}

.dk-calculator__result > div span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 8px 14px 0;
  color: #e0efff;
  font-size: 10px;
  text-transform: uppercase;
}

.dk-calculator__result > div span + span {
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.2);
}

.dk-calculator__result > div b {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.dk-button--white {
  width: 100%;
  min-height: 49px;
  padding-inline: 15px;
  color: var(--dk-blue) !important;
  background: #fff;
  border-color: #fff;
  border-radius: 10px;
  box-shadow: none;
  font-size: 12px;
}

.dk-button--white:hover {
  color: var(--dk-blue) !important;
  background: #edf6ff;
}

.dk-calculator__disclaimer {
  grid-column: 1 / -1;
  padding: 13px 24px;
  color: #52677f;
  background: #f2f6fa;
  border-top: 1px solid #e2eaf2;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.dk-calculator__reset {
  align-self: center;
  margin-top: 14px;
  padding: 4px 2px;
  color: #e8f3ff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.dk-calculator__reset:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.dk-calculator__result.is-updating > strong {
  animation: dk-result-pop .38s cubic-bezier(.2,.8,.2,1);
}

.dk-section--about {
  background: #fff;
}

.dk-about {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(360px, .78fr) minmax(480px, 1.22fr);
  gap: clamp(65px, 9vw, 145px);
}

.dk-about__visual {
  position: relative;
  max-width: 520px;
}

.dk-about__visual::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  right: -28px;
  width: 62%;
  height: 45%;
  background: #e7f2ff;
  border-radius: 22px;
  content: "";
}

.dk-about__visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: .76;
  object-fit: cover;
  border-radius: 22px 22px 22px 5px;
  box-shadow: 0 28px 65px rgba(8, 45, 93, .14);
}

.dk-about__caption {
  position: absolute;
  z-index: 3;
  right: -42px;
  bottom: 27px;
  display: flex;
  min-width: 285px;
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(5, 38, 81, .14);
  animation: dk-caption-float 7s ease-in-out infinite;
}

.dk-about__caption > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: #fff;
  background: var(--dk-blue);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
}

.dk-about__caption div {
  display: flex;
  flex-direction: column;
}

.dk-about__caption strong {
  font-size: 13px;
  font-weight: 800;
}

.dk-about__caption small {
  color: #4d627a;
  font-size: 11px;
}

.dk-about__copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.dk-about__copy > p:not(.dk-eyebrow) {
  margin-top: 23px;
  color: #465c73;
  font-size: 16px;
  line-height: 1.85;
}

.dk-about__copy > p i {
  color: var(--dk-blue-deep);
  font-style: normal;
  font-weight: 700;
}

.dk-about__copy blockquote {
  margin-top: 27px;
  padding: 19px 0 19px 23px;
  color: #213b5e;
  border-left: 3px solid var(--dk-blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.dk-values {
  display: grid;
  margin-top: 33px;
  padding-top: 22px;
  border-top: 1px solid var(--dk-line);
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dk-values span {
  display: flex;
  flex-direction: column;
  color: #3e556f;
  font-size: 12px;
  font-weight: 760;
}

.dk-values b {
  margin-bottom: 5px;
  color: var(--dk-blue);
  font-size: 10px;
  letter-spacing: .1em;
}

.dk-section--documents {
  background: linear-gradient(150deg, #f3f8ff, #edf5fe);
}

.dk-documents {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(350px, .9fr) minmax(480px, 1.1fr);
  gap: clamp(65px, 9vw, 140px);
}

.dk-documents h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.dk-documents > div:first-child > p:not(.dk-eyebrow) {
  margin: 25px 0 28px;
  color: var(--dk-muted);
  font-size: 16px;
  line-height: 1.85;
}

.dk-checklist {
  display: grid;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid #d9e6f4;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(12, 60, 119, .08);
  grid-template-columns: 1fr 1fr;
}

.dk-checklist span {
  display: grid;
  min-height: 130px;
  padding: 24px 23px;
  grid-template-columns: 29px 1fr;
  grid-template-rows: auto auto;
  border-bottom: 1px solid #e3ebf4;
  column-gap: 12px;
}

.dk-checklist span:nth-child(odd) {
  border-right: 1px solid #e3ebf4;
}

.dk-checklist span:nth-last-child(-n+2) {
  border-bottom: 0;
}

.dk-checklist b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--dk-blue);
  background: #e5f0ff;
  border-radius: 50%;
  grid-row: 1 / 3;
  font-size: 11px;
}

.dk-checklist strong {
  align-self: end;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.35;
}

.dk-checklist small {
  align-self: start;
  margin-top: 6px;
  color: #566c84;
  font-size: 12px;
  line-height: 1.5;
}

.dk-section--faq {
  background: #fff;
}

.dk-faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, .7fr) minmax(580px, 1.3fr);
  gap: clamp(60px, 9vw, 140px);
}

.dk-faq-layout aside {
  position: sticky;
  top: 130px;
}

.dk-faq-layout aside h2 {
  font-size: clamp(38px, 3.8vw, 55px);
}

.dk-faq-layout aside > p:not(.dk-eyebrow) {
  margin: 24px 0 30px;
  color: var(--dk-muted);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.dk-faq summary {
  display: grid;
  min-height: 84px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 45px 1fr 30px;
  gap: 14px;
}

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

.dk-faq summary:focus-visible {
  outline: 3px solid rgba(7, 87, 217, .28);
  outline-offset: 4px;
  border-radius: 8px;
}

.dk-faq summary > span {
  color: #617790;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.dk-faq summary strong {
  color: #183450;
  font-size: 17px;
  font-weight: 730;
  line-height: 1.4;
  transition: color .2s ease;
}

.dk-faq summary i {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid #c9d8e8;
  border-radius: 50%;
}

.dk-faq summary i::before,
.dk-faq summary i::after {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 10px;
  height: 1px;
  background: var(--dk-blue);
  content: "";
  transition: transform .2s ease;
}

.dk-faq summary i::after {
  transform: rotate(90deg);
}

.dk-faq details[open] summary strong {
  color: var(--dk-blue);
}

.dk-faq details[open] summary i::after {
  transform: rotate(0);
}

.dk-faq details > div {
  padding: 0 45px 27px 59px;
}

.dk-faq details > div p {
  color: #4b627b;
  font-size: 16px;
  line-height: 1.8;
}

.dk-faq details[open] > div {
  transform-origin: top;
  animation: dk-faq-open .3s ease-out;
}

.dk-contact-section {
  position: relative;
  padding: clamp(90px, 9vw, 145px) 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #061b3e 0%, #072b66 100%);
}

.dk-contact-section::before {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(100deg, #000, transparent 65%);
}

.dk-orb--contact {
  top: -120px;
  right: -70px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(43, 127, 239, .11);
  border-right-color: rgba(109, 180, 255, .025);
  border-bottom-color: rgba(109, 180, 255, .055);
  animation: dk-orbit 18s linear infinite;
}

.dk-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, .85fr) minmax(500px, 1.15fr);
  gap: clamp(60px, 8vw, 120px);
}

.dk-contact-copy h2 {
  color: #fff;
  font-size: clamp(42px, 4.35vw, 62px);
}

.dk-contact-copy h2 em {
  color: #8cc8ff;
}

.dk-contact-copy > p:not(.dk-eyebrow) {
  margin-top: 26px;
  color: #d2e1f0;
  font-size: 16px;
  line-height: 1.8;
}

.dk-contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.dk-contact-direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 9px 7px 0;
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease;
}

.dk-contact-direct a:hover {
  background: rgba(255,255,255,.06);
  transform: translateX(4px);
}

.dk-contact-direct a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #a7d7ff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: 14px;
}

.dk-contact-direct a div {
  display: flex;
  flex-direction: column;
}

.dk-contact-direct small {
  color: #b4cae0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dk-contact-direct strong {
  font-size: 13px;
  font-weight: 730;
}

.dk-contact-photo {
  position: relative;
  max-width: 480px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
}

.dk-contact-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 17, 38, .8));
  content: "";
}

.dk-contact-photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 35%;
}

.dk-contact-photo span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 690;
}

.dk-contact-photo span b {
  width: 8px;
  height: 8px;
  background: #39d993;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57,217,147,.15);
}

.dk-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--dk-ink);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 8, 25, .28);
}

.dk-form__head {
  margin-bottom: 30px;
}

.dk-form__head > span {
  color: var(--dk-blue);
  font-size: 11px;
  font-weight: 830;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.dk-form__head > strong {
  display: block;
  margin-top: 3px;
  font-size: 31px;
  font-weight: 790;
  letter-spacing: -.045em;
}

.dk-form__head p {
  margin-top: 6px;
  color: var(--dk-muted);
  font-size: 13px;
}

.dk-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dk-form label:not(.dk-consent):not(.dk-honeypot) {
  display: block;
  margin-bottom: 17px;
}

.dk-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #344e69;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dk-form label.is-required > span::after {
  color: #a51f31;
  content: " *";
}

.dk-form input[type="text"],
.dk-form input[type="email"],
.dk-form input[type="tel"],
.dk-form select,
.dk-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--dk-ink);
  background: #f7faff;
  border: 1px solid #dce6f1;
  border-radius: 9px;
  outline: 0;
  font-size: 14px;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

.dk-form textarea {
  min-height: 115px;
  resize: vertical;
}

.dk-form input:focus,
.dk-form select:focus,
.dk-form textarea:focus {
  background: #fff;
  border-color: var(--dk-blue);
  box-shadow: 0 0 0 3px rgba(10, 88, 232, .09);
}

.dk-form input::placeholder,
.dk-form textarea::placeholder {
  color: #5f7188;
}

.dk-form input:user-invalid,
.dk-form select:user-invalid,
.dk-form textarea:user-invalid {
  border-color: #b72c3d;
}

.dk-consent {
  display: grid;
  margin: 3px 0 20px;
  cursor: pointer;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.dk-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--dk-blue);
}

.dk-consent span {
  margin: 0 !important;
  color: #536981 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.dk-consent a {
  color: var(--dk-blue);
  text-decoration: underline;
}

.dk-button--submit {
  width: 100%;
  border: 0;
}

.dk-form.is-sending .dk-button--submit {
  cursor: wait;
  opacity: .7;
}

.dk-form.is-highlighted {
  animation: dk-form-highlight .8s ease-out;
}

.dk-form__message {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.dk-form__message.is-success,
.dk-form__message.is-error {
  display: block;
}

.dk-form__message.is-success {
  color: #0b6847;
  background: #e6f8f1;
}

.dk-form__message.is-error {
  color: #9a2431;
  background: #fff0f1;
}

.dk-form__legal {
  display: block;
  margin-top: 14px;
  color: #65768a;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.dk-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.dk-footer {
  color: #b9c6d5;
  background: #041329;
}

.dk-footer__top {
  display: grid;
  min-height: 180px;
  align-items: center;
  padding-block: 40px;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: 55px;
}

.dk-brand--footer strong {
  color: #fff;
}

.dk-brand--footer small {
  color: #a5b7ca;
}

.dk-footer__top > p {
  color: #b7c6d6;
  font-size: 13px;
  line-height: 1.7;
}

.dk-footer__email {
  justify-self: end;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 730;
}

.dk-footer__email span {
  margin-left: 8px;
  color: #72b8ff;
}

.dk-footer__bottom {
  display: grid;
  min-height: 64px;
  align-items: center;
  padding-block: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  color: #a7b7c8;
  font-size: 11px;
}

.dk-footer__bottom > span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.dk-footer__owner a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-weight: 750;
}

.dk-footer__legal-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  line-height: 1.65;
}

.dk-footer__bottom nav {
  display: flex;
  gap: 16px;
}

.dk-footer__bottom a:hover {
  color: #fff;
}

.dk-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3b526d !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.dk-scroll-cue > span {
  position: relative;
  width: 18px;
  height: 30px;
  border: 1px solid #7b94ae;
  border-radius: 12px;
}

.dk-scroll-cue > span::after {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 2px;
  height: 6px;
  background: var(--dk-blue);
  border-radius: 4px;
  content: "";
  animation: dk-scroll-dot 1.8s ease-in-out infinite;
}

.dk-back-to-top {
  position: fixed;
  z-index: 180;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: #073f9f;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(5, 34, 77, .26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.9);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}

.dk-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.dk-back-to-top:hover {
  background: var(--dk-blue);
  transform: translateY(-3px) scale(1);
}

.dk-mobile-cta {
  display: none;
}

.dk-motion-ready [data-dk-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1);
}

.dk-motion-ready [data-dk-reveal="left"] {
  transform: translateX(-30px);
}

.dk-motion-ready [data-dk-reveal="right"] {
  transform: translateX(30px);
}

.dk-motion-ready [data-dk-reveal="scale"] {
  transform: translateY(18px) scale(.975);
}

.dk-motion-ready [data-dk-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dk-service-card:hover .dk-service-card__symbol {
  transform: translateY(-4px) rotate(-3deg);
}

.dk-service-card__symbol {
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

@keyframes dk-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dk-drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(18px, 14px, 0); }
}

@keyframes dk-pulse {
  0% { opacity: 1; transform: scale(.6); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes dk-marquee {
  to { transform: translateX(-25%); }
}

@keyframes dk-hero-sweep {
  0%, 25% { opacity: 0; transform: translateX(-20%) rotate(12deg); }
  48%, 62% { opacity: 1; }
  85%, 100% { opacity: 0; transform: translateX(390%) rotate(12deg); }
}

@keyframes dk-glow {
  0%, 100% { opacity: .65; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes dk-caption-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes dk-orbit {
  to { transform: rotate(360deg); }
}

@keyframes dk-scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(10px); }
}

@keyframes dk-result-pop {
  0% { opacity: .65; transform: translateY(5px) scale(.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dk-faq-open {
  0% { opacity: 0; transform: translateY(-7px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes dk-form-highlight {
  0%, 100% { box-shadow: 0 35px 80px rgba(0, 8, 25, .28); }
  45% { box-shadow: 0 35px 90px rgba(52, 151, 255, .5), 0 0 0 5px rgba(124, 192, 255, .2); }
}

@media (max-width: 1160px) {
  .dk-shell { width: min(100% - 40px, 1080px); }
  .dk-hero { min-height: auto; }
  .dk-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(370px, .8fr); gap: 45px; }
  .dk-hero__trust { gap: 12px; }
  .dk-float-card--top { left: -24px; }
  .dk-float-card--bottom { right: -10px; }
  .dk-services { grid-template-columns: 1fr 1fr; }
  .dk-service-card { min-height: 350px; }
  .dk-service-card__symbol { margin-bottom: 35px; }
  .dk-case-card { grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr); }
  .dk-case-card__content { padding: 42px; }
  .dk-case-card__visual { min-height: 720px; }
  .dk-calculator-grid { grid-template-columns: 1fr; }
  .dk-calculator-intro { max-width: 740px; }
  .dk-calculator { max-width: 900px; }
  .dk-about__caption { right: -20px; }
}

@media (max-width: 960px) {
  .dkde-landing-template #wpadminbar + .dk-site .dk-header { top: 46px; }
  .dk-header__inner { min-height: 76px; }
  .dk-menu-toggle { display: block; }
  .dk-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .dk-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .dk-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .dk-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 20px;
    left: 20px;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 22px 45px rgba(5, 36, 78, .15);
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  }
  .dk-nav.is-open { max-height: 520px; padding: 12px 18px 20px; opacity: 1; }
  .dk-nav > a:not(.dk-button) { padding: 12px 3px; border-bottom: 1px solid #edf1f5; }
  .dk-nav > a::after { display: none; }
  .dk-nav .dk-button { margin-top: 11px; }
  .dk-header.is-menu-open { background: #fff; }
  .dk-hero { padding-top: 120px; background: linear-gradient(150deg, #fff 0%, #fff 55%, #eef7ff 100%); }
  .dk-hero__grid { grid-template-columns: 1fr 400px; gap: 30px; }
  .dk-hero h1 { font-size: clamp(49px, 7vw, 68px); }
  .dk-hero__lead { font-size: 17px; }
  .dk-hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .dk-photo-frame { border-radius: 180px 180px 22px 22px; }
  .dk-float-card { padding: 13px; }
  .dk-float-card--top { left: -15px; }
  .dk-intro { grid-template-columns: 1fr; gap: 35px; }
  .dk-intro__copy { max-width: 720px; padding-top: 0; }
  .dk-process { grid-template-columns: 1fr 1fr; gap: 45px 35px; }
  .dk-section-heading--case { grid-template-columns: 1fr; gap: 20px; }
  .dk-section-heading--case > p:last-child { max-width: 680px; }
  .dk-case-card { grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); }
  .dk-case-card__visual { min-height: 760px; }
  .dk-case-steps { grid-template-columns: 1fr; gap: 14px; }
  .dk-case-lesson { grid-template-columns: 1fr; gap: 7px; }
  .dk-about { grid-template-columns: 1fr 1.12fr; gap: 55px; }
  .dk-about__visual::before { right: -12px; }
  .dk-about__caption { right: -12px; min-width: 240px; }
  .dk-documents { grid-template-columns: 1fr; gap: 50px; }
  .dk-documents > div:first-child { max-width: 720px; }
  .dk-faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .dk-faq-layout aside { position: static; max-width: 720px; }
  .dk-contact-grid { grid-template-columns: 1fr; }
  .dk-contact-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 35px; }
  .dk-contact-copy .dk-eyebrow,
  .dk-contact-copy h2,
  .dk-contact-copy > p { grid-column: 1 / -1; }
  .dk-contact-photo { margin-top: 32px; }
  .dk-scroll-cue { display: none; }
}

@media (max-width: 760px) {
  .dk-site { padding-bottom: 64px; }
  .dk-shell { width: min(100% - 32px, 680px); }
  .dk-header__inner { min-height: 70px; }
  .dk-brand__mark { width: 38px; height: 38px; }
  .dk-brand strong { font-size: 15px; }
  .dk-hero { padding: 108px 0 55px; }
  .dk-hero::before { width: 100%; }
  .dk-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .dk-hero__copy { padding: 10px 0; }
  .dk-hero h1 { font-size: clamp(43px, 11.5vw, 58px); line-height: 1; }
  .dk-hero h1 em { font-size: .7em; line-height: 1.14; }
  .dk-hero__lead { margin-top: 25px !important; font-size: 16px; }
  .dk-hero__actions { margin-top: 29px; }
  .dk-hero__trust { margin-top: 34px; }
  .dk-hero__visual { width: min(88%, 460px); margin: 10px auto 0; justify-self: center; }
  .dk-photo-frame { aspect-ratio: .8; border-width: 6px; }
  .dk-float-card { width: min(245px, 78%); }
  .dk-float-card--top { top: 13%; left: -27px; }
  .dk-float-card--bottom { right: -27px; bottom: 7%; }
  .dk-float-card__icon { flex-basis: 36px; width: 36px; height: 36px; }
  .dk-float-card strong { font-size: 11px; }
  .dk-marquee > div { animation-duration: 20s; }
  .dk-section { padding: 82px 0; }
  .dk-section-heading h2,
  .dk-calculator-intro h2,
  .dk-about__copy h2,
  .dk-documents h2,
  .dk-faq-layout aside h2,
  .dk-contact-copy h2 { font-size: clamp(34px, 9.5vw, 46px); line-height: 1.1; }
  .dk-eyebrow { margin-bottom: 18px !important; }
  .dk-section-heading--center { margin-bottom: 42px; text-align: left; }
  .dk-section-heading--center .dk-eyebrow { justify-content: flex-start; }
  .dk-section-heading--center > p:last-child { font-size: 15px; }
  .dk-services { grid-template-columns: 1fr; }
  .dk-service-card { min-height: 340px; }
  .dk-case-section { padding: 82px 0; }
  .dk-section-heading--case { margin-bottom: 40px; }
  .dk-case-card { grid-template-columns: 1fr; }
  .dk-case-card__visual { min-height: 0; height: 520px; }
  .dk-case-card__content { padding: 31px 23px; }
  .dk-case-card__content h3 { font-size: clamp(28px, 8.7vw, 38px); }
  .dk-case-comparison { grid-template-columns: 1fr; gap: 10px; }
  .dk-case-comparison > b { min-height: 20px; transform: rotate(90deg); }
  .dk-case-steps { grid-template-columns: 1fr; }
  .dk-process { grid-template-columns: 1fr; gap: 35px; }
  .dk-section--process .dk-section-heading { margin-bottom: 50px; }
  .dk-calculator-section { padding: 82px 0; }
  .dk-calculator-grid { gap: 42px; }
  .dk-calculator { grid-template-columns: 1fr; }
  .dk-calculator__inputs { padding: 32px 24px; }
  .dk-calculator__result { padding: 32px 24px; }
  .dk-calculator__result > strong { font-size: 49px; }
  .dk-about { grid-template-columns: 1fr; gap: 55px; }
  .dk-about__visual { width: calc(100% - 18px); }
  .dk-about__caption { right: -18px; bottom: 20px; }
  .dk-values { grid-template-columns: 1fr; gap: 11px; }
  .dk-values span { flex-direction: row; gap: 10px; }
  .dk-checklist { grid-template-columns: 1fr; }
  .dk-checklist span,
  .dk-checklist span:nth-child(odd),
  .dk-checklist span:nth-last-child(-n+2) { min-height: 110px; border-right: 0; border-bottom: 1px solid #e3ebf4; }
  .dk-checklist span:last-child { border-bottom: 0; }
  .dk-faq summary { min-height: 78px; grid-template-columns: 30px 1fr 27px; gap: 10px; }
  .dk-faq summary strong { font-size: 15px; }
  .dk-faq details > div { padding: 0 15px 25px 40px; }
  .dk-contact-section { padding: 82px 0; }
  .dk-contact-copy { display: block; }
  .dk-contact-photo { max-width: 100%; }
  .dk-form__row { grid-template-columns: 1fr; gap: 0; }
  .dk-form { padding: 28px 21px; }
  .dk-footer__top { grid-template-columns: 1fr; gap: 25px; }
  .dk-footer__email { justify-self: start; }
  .dk-footer__bottom { grid-template-columns: 1fr; gap: 9px; padding-block: 22px; }
  .dk-footer__bottom > span:nth-child(2) { justify-self: start; text-align: left; }
  .dk-footer__legal-note { text-align: left; }
  .dk-back-to-top { right: 14px; bottom: 74px; width: 43px; height: 43px; }
  .dk-mobile-cta {
    position: fixed;
    z-index: 190;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #fff !important;
    background: var(--dk-blue);
    border-radius: 11px;
    box-shadow: 0 12px 32px rgba(5, 42, 97, .28);
    font-size: 12px;
    font-weight: 800;
  }
}

@media (max-width: 420px) {
  .dk-shell { width: calc(100% - 26px); }
  .dk-hero__actions .dk-button { width: 100%; }
  .dk-hero__trust { align-items: flex-start; flex-direction: column; }
  .dk-hero__visual { width: 90%; }
  .dk-float-card--top { left: -17px; }
  .dk-float-card--bottom { right: -17px; }
  .dk-case-card__visual { height: 460px; }
  .dk-case-card__content { padding-inline: 19px; }
  .dk-calculator__result > strong { font-size: 42px; }
  .dk-calculator__result > div { grid-template-columns: 1fr; }
  .dk-calculator__result > div span + span { padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .dk-about__caption { right: -13px; min-width: 225px; }
  .dk-form__head > strong { font-size: 27px; }
  .dk-calculator__inputs label > span { align-items: flex-start; flex-direction: column; gap: 5px; }
  .dk-faq summary { grid-template-columns: 1fr 27px; }
  .dk-faq summary > span { display: none; }
  .dk-faq details > div { padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .dk-site *,
  .dk-site *::before,
  .dk-site *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .dk-motion-ready [data-dk-reveal] { opacity: 1; transform: none; }
}

@media print {
  .dk-header,
  .dk-mobile-cta,
  .dk-form,
  .dk-marquee,
  .dk-progress { display: none !important; }
  .dk-site { width: 100%; margin: 0; color: #000; }
  .dk-hero { min-height: auto; padding: 40px 0; background: #fff; }
  .dk-section,
  .dk-calculator-section,
  .dk-contact-section { padding: 40px 0; color: #000; background: #fff; }
}
