@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap");

:root {
  --wd-bg: #ffffff;
  --wd-text: #1a1a1a;
  --wd-muted: #555555;
  --wd-primary: #273171;
  --wd-accent: #ee3131;
  --wd-light: #f5f7fb;
  --wd-shell: 1140px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", "Lato", "Nunito", sans-serif;
  color: var(--wd-text);
  background: var(--wd-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(39, 49, 113, 0.45);
  outline-offset: 2px;
}

.wd-screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wd-shell {
  width: min(calc(100% - 2rem), var(--wd-shell));
  margin-inline: auto;
}
.wd-main section { padding: 4.5rem 0; }
.wd-grid { display: grid; gap: 1.25rem; }
.wd-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wd-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wd-vcenter { align-items: center; }
.wd-kicker { color: var(--wd-accent); font-weight: 700; margin: 0 0 .6rem; }
.wd-sub { color: var(--wd-muted); margin-top: .2rem; }

.wd-header {
  background: #fff;
  border-bottom: 1px solid #eceef4;
  position: sticky;
  top: 0;
  z-index: 20;
}
.wd-header-inner {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 0;
}
.wd-logo img { max-height: 50px; width: auto; }
.wd-nav-toggle {
  display: none !important;
  border: 1px solid #d8deec;
  background: #fff;
  color: var(--wd-primary);
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  width: 46px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.wd-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.wd-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wd-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.wd-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.wd-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}
.wd-nav > div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wd-nav-list {
  list-style: none;
  margin: 10px auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-weight: 700;
  color: var(--wd-primary);
  text-transform: uppercase;
  font-size: smaller;
}
.wd-nav-list a:hover { color: #707070; }

/* Keep header primary menu centered even if plugin/theme CSS loads later. */
.wd-header .wd-nav ul.wd-nav-list,
.wd-header .wd-nav .wd-nav-list {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* JS-driven nav mode avoids conflicting breakpoint overrides. */
.wd-header .wd-nav-toggle {
  display: none !important;
}
.wd-header.wd-nav-mobile .wd-nav-toggle {
  display: inline-flex !important;
}
.wd-header.wd-nav-mobile .wd-nav {
  display: none !important;
  width: 100%;
  margin-top: 0.2rem;
}
.wd-header.wd-nav-mobile .wd-nav.is-open {
  display: flex !important;
}
.wd-header:not(.wd-nav-mobile) .wd-nav {
  display: flex !important;
}

.wd-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: url("/wp-content/uploads/2021/09/wwwDream-background.jpg") center/cover no-repeat;
  color: #fff;
}
.wd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #121848 8%, rgba(18, 24, 72, 0.34) 100%);
}
.wd-hero-inner { position: relative; z-index: 1; }
.wd-hero-copy { max-width: 640px; }
.wd-hero h1 { margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; }
.wd-hero p { margin: 0 0 1.4rem; font-size: 1.1rem; }
.wd-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.wd-btn {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: .75rem 1.2rem;
  font-weight: 700;
}
.wd-btn-solid {
  background: var(--wd-accent);
  border-color: var(--wd-accent);
}
.wd-btn-outline:hover,
.wd-btn-solid:hover {
  background: #fff;
  color: var(--wd-accent);
}

.wd-services { padding-top: 0 !important; margin-top: -4rem; position: relative; z-index: 2; }
.wd-card {
  background: #fff;
  border: 1px solid #f5f5f5;
  padding: 2rem 1.6rem;
}
.wd-card h3 { margin-top: 0; margin-bottom: .8rem; font-size: 1.2rem; }
.wd-card p { margin: 0; color: var(--wd-muted); }
.wd-card-featured { box-shadow: 0 8px 30px rgba(39, 49, 113, 0.08); }

.wd-about h2,
.wd-why h2,
.wd-value h2,
.wd-testimonials-wrap h2,
.wd-newsletter h2,
.wd-contact-hero h1 {
  margin: 0 0 .8rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.wd-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.wd-stat-number { font-weight: 900; font-size: 2rem; color: var(--wd-text); line-height: 1; }
.wd-stat-label { color: #949494; font-weight: 700; margin-top: .35rem; }

.wd-why {
  background:
    linear-gradient(rgba(39, 49, 113, .84), rgba(39, 49, 113, .84)),
    url("/wp-content/uploads/2021/09/wwwDream-office-work.jpg") right center/contain no-repeat,
    var(--wd-primary);
  color: #fff;
}
.wd-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 1.1rem;
}
.wd-feature h3 { margin: 0 0 .35rem; }
.wd-feature p { margin: 0; color: rgba(255,255,255,.9); }

.wd-value { background: #fff; }
.wd-logo-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}
.wd-logo-row img { max-height: 65px; object-fit: contain; margin: 0 auto; }

.wd-testimonials-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}
.wd-testimonial {
  background: #fff;
  border: 1px solid #eceef4;
  padding: 1.1rem;
  height: 100%;
}
.wd-testimonial p { margin: 0 0 1rem; color: var(--wd-muted); }
.wd-testimonial h4 { margin: 0; color: var(--wd-primary); }

.wd-newsletter { background: #f9fafc; }
.wd-newsletter .ff-btn-submit,
.wd-contact-grid .ff-btn-submit {
  border-radius: 8px;
}

.wd-footer {
  border-top: 1px solid rgba(221, 230, 255, 0.14);
  padding: 1.85rem 0 1.7rem;
  color: rgba(236, 242, 255, 0.82);
  text-align: center;
  background:
    radial-gradient(680px 220px at 88% -20%, rgba(238, 49, 49, 0.24), transparent 60%),
    radial-gradient(620px 280px at -10% 100%, rgba(109, 88, 247, 0.25), transparent 65%),
    linear-gradient(160deg, #0d132f 0%, #121f4f 52%, #0b173e 100%);
}

.wd-footer .wd-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}

.wd-footer p {
  margin: 0;
  max-width: 76ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(236, 242, 255, 0.8);
}

.wd-footer .wd-nav-list {
  justify-content: center;
  gap: 1rem;
  color: rgba(232, 240, 255, 0.92);
  font-weight: 600;
}

.wd-footer .wd-nav-list a {
  padding: 0.2rem 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.wd-footer .wd-nav-list a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 767px) {
  .wd-footer {
    padding: 1.45rem 0 1.45rem;
  }

  .wd-footer p {
    font-size: 0.9rem;
  }

  .wd-footer .wd-nav-list {
    gap: 0.75rem;
  }
}

.wd-page,
.wd-generic {
  padding-top: 2.5rem !important;
  padding-bottom: 3rem !important;
}
.wd-page-head { margin-bottom: 1.5rem; text-align: center; }
.wd-page-head h1 { margin: 0 0 .25rem; }

.wd-post-card {
  border: 1px solid #eceef4;
  background: #fff;
  overflow: hidden;
}
.wd-post-card h2 {
  margin: 0;
  padding: .9rem;
  font-size: 1rem;
}

.wd-contact-hero {
  background: linear-gradient(120deg, #273171 0%, #1f286e 100%);
  color: #fff;
  text-align: center;
}
.wd-contact-assurance {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.wd-contact-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 242, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
}
.wd-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.wd-contact-grid article {
  border: 1px solid #eceef4;
  padding: 1.2rem;
  background: #fff;
}
.wd-contact-checklist {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.42rem;
  color: #4f5b78;
}
.wd-contact-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.34rem;
  color: #4f5b78;
}

.wd-contact-hero-premium {
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.22), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%),
    linear-gradient(165deg, #0f1638 0%, #1a2865 52%, #111f53 100%);
  text-align: left;
}

.wd-contact-hero-inner h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2rem, 4.9vw, 4rem);
  line-height: 1.06;
}

.wd-contact-hero-lead {
  margin: 0.95rem 0 0;
  max-width: 62ch;
  color: rgba(241, 246, 255, 0.9);
}

.wd-contact-main {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.wd-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.wd-contact-info {
  display: grid;
  gap: 0.9rem;
}

.wd-contact-panel {
  border: 1px solid #dbe3f6;
  border-radius: 16px;
  background: #fff;
  padding: 1.1rem 1rem;
  box-shadow: 0 14px 24px rgba(23, 37, 82, 0.08);
}

.wd-contact-panel h2,
.wd-contact-panel h3 {
  margin: 0 0 0.5rem;
  color: #1d2a5c;
}

.wd-contact-panel p {
  margin: 0;
  color: #4f5b78;
}

.wd-contact-office-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.wd-contact-office-card {
  border: 1px solid #e1e8fa;
  border-radius: 12px;
  background: #fbfcff;
  padding: 0.9rem 0.8rem;
}

.wd-contact-office-card h4 {
  margin: 0 0 0.35rem;
  color: #22346d;
}

.wd-contact-office-card p {
  margin: 0;
  font-size: 0.93rem;
}

.wd-contact-office-card p + p {
  margin-top: 0.4rem;
}

.wd-contact-office-card a {
  color: #273171;
  font-weight: 700;
}

.wd-contact-form-panel {
  border: 1px solid #d5dff4;
  border-radius: 20px;
  background: #fff;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 18px 32px rgba(26, 42, 91, 0.12);
}

.wd-contact-form-head h2 {
  margin: 0;
  color: #1c2858;
}

.wd-contact-form-head p {
  margin: 0.5rem 0 0.85rem;
  color: #566281;
}

.wd-contact-form-panel .fluentform {
  margin-top: 0.2rem;
}

.wd-contact-form-footnote {
  margin: 0.8rem 0 0;
  color: #637092;
  font-size: 0.84rem;
}

.wd-contact-clean-hero {
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.22), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%),
    linear-gradient(165deg, #0f1638 0%, #1a2865 52%, #111f53 100%);
  color: #fff;
  text-align: left;
}

.wd-contact-clean-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.9vw, 3.8rem);
  line-height: 1.06;
  max-width: 18ch;
}

.wd-contact-clean-hero p {
  margin: 0.9rem 0 0;
  color: rgba(241, 246, 255, 0.9);
  max-width: 58ch;
}

.wd-contact-clean-main {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.wd-contact-clean-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: start;
}

.wd-contact-offices-clean {
  display: grid;
  gap: 0.85rem;
}

.wd-contact-offices-clean .wd-contact-office-card h3 {
  margin: 0 0 0.35rem;
  color: #22346d;
}

.wd-contact-offices-clean .wd-contact-office-card p {
  margin: 0;
  color: #4f5b78;
}

.wd-contact-offices-clean .wd-contact-office-card p + p {
  margin-top: 0.42rem;
}

.wd-contact-map-section {
  background: #fff;
}

.wd-contact-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.wd-contact-map-card {
  border: 1px solid #d7e0f4;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(24, 38, 82, 0.1);
}

.wd-contact-map-card h3 {
  margin: 0;
  padding: 0.85rem 0.95rem;
  color: #1f2c61;
  border-bottom: 1px solid #e4eaf8;
}

.wd-contact-map-card iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
.wd-quote-form {
  display: grid;
  gap: 0.85rem;
}
.wd-quote-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}
.wd-quote-form input,
.wd-quote-form select,
.wd-quote-form textarea {
  width: 100%;
  border: 1px solid #ced5e7;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: inherit;
}
.wd-quote-form textarea {
  min-height: 140px;
  resize: vertical;
}
.wd-form-success,
.wd-form-error {
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin: 0 0 1rem;
}
.wd-form-success {
  background: #edf8f1;
  border: 1px solid #8bc7a2;
  color: #0f5b2c;
}
.wd-form-error {
  background: #fff1f1;
  border: 1px solid #ec9a9a;
  color: #7d1e1e;
}

@media (max-width: 1024px) {
  .wd-grid-3,
  .wd-logo-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wd-grid-2,
  .wd-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .wd-main section { padding: 3.2rem 0; }
  .wd-services { margin-top: -2.5rem; }
  .wd-header-inner {
    min-height: 70px;
    padding: 0.8rem 0;
    align-items: center;
  }
  .wd-header.wd-nav-mobile .wd-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    font-size: .95rem;
    padding: 0.55rem 0 0.2rem;
  }
  .wd-header.wd-nav-mobile .wd-nav-list a {
    display: inline-block;
    padding: 0.35rem 0.4rem;
  }
  .wd-stats { grid-template-columns: 1fr; }
  .wd-logo-row { grid-template-columns: 1fr 1fr; }
  .wd-contact-assurance {
    justify-content: flex-start;
    gap: 0.42rem;
  }
  .wd-contact-assurance span {
    font-size: 0.76rem;
    padding: 0.34rem 0.6rem;
  }

  .wd-contact-layout {
    grid-template-columns: 1fr;
  }

  .wd-contact-office-grid {
    grid-template-columns: 1fr;
  }

  .wd-contact-clean-layout {
    grid-template-columns: 1fr;
  }

  .wd-contact-map-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.wd-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wd-section-head { margin-bottom: 1.25rem; }
.wd-center { text-align: center; margin-top: 1rem; }
.wd-projects { background: #fff; }
.wd-service-card h3 { margin-top: 0; }
.wd-project-single .wd-project-content,
.wd-service-single .wd-project-content { max-width: 760px; margin-inline: auto; }
.wd-project-cta {
  margin-top: 2rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(39, 49, 113, 0.96) 0%, rgba(88, 58, 163, 0.96) 62%, rgba(238, 49, 49, 0.95) 100%);
  box-shadow: 0 22px 40px rgba(28, 30, 78, 0.2);
  color: #fff;
  text-align: center;
}

.wd-main .wd-project-cta:last-child {
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}
.wd-project-cta h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}
.wd-project-cta p {
  margin: 0 auto 1.1rem;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}
.wd-project-cta .wd-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background: #fff;
  border-color: #fff;
  color: #273171;
}
.wd-project-cta .wd-btn-solid:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.wd-header.is-scrolled { box-shadow: 0 8px 24px rgba(12, 20, 48, 0.07); }

@media (max-width: 1200px) {
  .wd-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .wd-grid-4 { grid-template-columns: 1fr; }
}

.wd-hero-premium {
  min-height: 620px;
  background-image:
    radial-gradient(1200px 420px at 78% 110%, rgba(238,49,49,0.32), transparent 60%),
    url('/wp-content/uploads/2021/09/wwwDream-background.jpg');
}

.wd-cred-strip {
  margin-top: -24px;
  position: relative;
  z-index: 3;
}

.wd-cred-strip .wd-shell {
  background: #fff;
  border: 1px solid #eceef4;
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.wd-cred-strip .wd-shell > div {
  text-align: center;
  padding: 0.4rem 0.6rem;
}

.wd-cred-strip strong {
  display: block;
  color: var(--wd-primary);
  font-size: 1.1rem;
}

.wd-cred-strip span {
  color: #6c7380;
  font-size: 0.95rem;
}

.wd-card,
.wd-post-card,
.wd-testimonial,
.wd-step {
  border-radius: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wd-card:hover,
.wd-post-card:hover,
.wd-testimonial:hover,
.wd-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 34, 88, 0.1);
  border-color: #dbe1ef;
}

.wd-process {
  background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.wd-step {
  background: #fff;
  border: 1px solid #eceef4;
  padding: 1rem 1rem 1.1rem;
}

.wd-step h3 {
  margin: 0 0 0.4rem;
  color: var(--wd-primary);
  font-size: 1rem;
}

.wd-step p {
  margin: 0;
  color: #5f6776;
}

.wd-filter-bar {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 0 1.2rem;
  justify-content: center;
}

.wd-filter-pill {
  border: 1px solid #d8deec;
  color: #273171;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  background: #fff;
}

.wd-filter-pill:hover,
.wd-filter-pill.is-active {
  background: #273171;
  color: #fff;
  border-color: #273171;
}

.wd-muted {
  color: #5d6574;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .wd-hero-premium {
    min-height: 540px;
  }

  .wd-cred-strip {
    margin-top: -12px;
  }
}

/* Single Project: Hero Alt */
.wd-project-hero-alt__hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}

.wd-project-hero-alt__media,
.wd-project-hero-alt__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-project-hero-alt__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 18, 0.28) 22%, rgba(6, 9, 18, 0.85) 100%);
}

.wd-project-hero-alt__headline-wrap {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 0 3.6rem;
}

.wd-project-hero-alt__eyebrow {
  margin: 0 0 .85rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.wd-project-hero-alt__headline-wrap h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

.wd-project-hero-alt__summary {
  margin: 1rem 0 0;
  max-width: 760px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.wd-project-hero-alt__body {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2rem;
  padding-top: 3rem !important;
}

.wd-project-hero-alt__meta {
  background: #f9fbff;
  border: 1px solid #e5eaf5;
  border-radius: 12px;
  padding: 1.05rem;
  align-self: start;
  position: sticky;
  top: 94px;
}

.wd-project-hero-alt__meta h2 {
  margin: 0 0 .75rem;
  font-size: 1rem;
  color: #273171;
}

.wd-project-hero-alt__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-project-hero-alt__meta li {
  padding: .55rem 0;
  border-bottom: 1px dashed #dce3f2;
}

.wd-project-hero-alt__meta li:last-child {
  border-bottom: 0;
}

.wd-project-hero-alt__meta strong,
.wd-project-hero-alt__meta span {
  display: block;
}

.wd-project-hero-alt__meta strong {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #69718a;
}

.wd-project-hero-alt__meta span {
  margin-top: .14rem;
  color: #1a1a1a;
}

.wd-project-hero-alt__content {
  max-width: 860px;
}

.wd-project-hero-alt__content > *:first-child {
  margin-top: 0;
}

.wd-project-hero-alt__content h2,
.wd-project-hero-alt__content h3 {
  color: #1a1a1a;
}

.wd-project-hero-alt__gallery {
  padding-top: 1rem !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wd-project-hero-alt__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e8edf8;
  background: #fff;
}

.wd-project-hero-alt__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-project-hero-alt__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .75rem;
  padding: 1.4rem 0 2.8rem !important;
}

.wd-project-hero-alt__nav > div:nth-child(1) {
  text-align: left;
}

.wd-project-hero-alt__nav > div:nth-child(2) {
  text-align: center;
}

.wd-project-hero-alt__nav > div:nth-child(3) {
  text-align: right;
}

.wd-project-hero-alt__nav a {
  color: #273171;
  font-weight: 700;
}

.wd-project-hero-alt__nav a:hover {
  color: #ee3131;
}

@media (max-width: 1024px) {
  .wd-project-hero-alt__body {
    grid-template-columns: 1fr;
  }

  .wd-project-hero-alt__meta {
    position: static;
  }

  .wd-project-hero-alt__gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .wd-project-hero-alt__hero {
    min-height: 58vh;
  }

  .wd-project-hero-alt__headline-wrap {
    padding-bottom: 2rem;
  }

  .wd-project-hero-alt__nav {
    grid-template-columns: 1fr;
  }

  .wd-project-hero-alt__nav > div {
    text-align: center !important;
  }
}

.wd-project-hero-alt__media {
  overflow: hidden;
}

.wd-parallax-media,
.wd-parallax-overlay {
  will-change: transform;
}

.wd-parallax-media {
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center top;
}

.wd-project-hero-alt__meta li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .45rem;
  align-items: start;
}

.wd-meta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #273171;
  color: #fff;
  font-size: .72rem;
  margin-top: .12rem;
}

.wd-meta-text {
  min-width: 0;
}

.wd-project-hero-alt__story {
  margin-top: 1.4rem;
}

.wd-project-story-block {
  position: relative;
  min-height: 64vh;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 0;
}

.wd-project-story-block__image,
.wd-project-story-block__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-project-story-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9, 12, 24, 0.78) 0%, rgba(9, 12, 24, 0.2) 58%, rgba(9, 12, 24, 0.1) 100%);
}

.wd-project-story-block.is-reverse::after {
  background: linear-gradient(245deg, rgba(9, 12, 24, 0.78) 0%, rgba(9, 12, 24, 0.2) 58%, rgba(9, 12, 24, 0.1) 100%);
}

.wd-project-story-block__caption-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.wd-project-story-block__caption {
  max-width: 520px;
  color: #fff;
  padding: 1.2rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 12, 28, 0.42);
  backdrop-filter: blur(4px);
}

.wd-project-story-block.is-reverse .wd-project-story-block__caption-wrap {
  justify-content: flex-end;
}

.wd-project-story-block__caption .wd-kicker {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: .5rem;
}

.wd-project-story-block__caption h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
}

@media (max-width: 767px) {
  .wd-project-story-block {
    min-height: 48vh;
  }

  .wd-project-story-block__caption {
    max-width: 100%;
    width: 100%;
    margin: 0 .2rem;
  }
}

.wd-about-intro {
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.22), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%),
    linear-gradient(165deg, #0f1638 0%, #1a2865 52%, #111f53 100%);
  color: #fff;
  padding: 5.15rem 0 4.35rem;
}

.wd-about-intro h1 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.06;
}

.wd-about-main {
  background: #fff;
}

.wd-about-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
}

.wd-about-main-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe2f5;
  box-shadow: 0 22px 34px rgba(20, 34, 77, 0.14);
  min-height: 420px;
}

.wd-about-main-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.wd-about-main-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #1a2451;
}

.wd-about-main-copy p {
  margin: 0 0 0.9rem;
  color: #4f5b78;
  line-height: 1.75;
}

.wd-about-main-copy .wd-btn {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  text-align: center;
  line-height: 1.2;
  background: transparent;
  border-color: #273171;
  color: #273171;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wd-about-main-copy .wd-btn:hover {
  background: #273171;
  border-color: #273171;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 24, 56, 0.2);
}

.wd-about-services {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.wd-about-services .wd-section-head h2,
.wd-about-team .wd-section-head h2,
.wd-about-clients .wd-section-head h2 {
  margin: 0;
  color: #1b2555;
  font-size: clamp(1.65rem, 3.3vw, 2.5rem);
}

.wd-about-service-card,
.wd-about-team-card {
  border: 1px solid #d8e1f4;
  border-radius: 18px;
  background: #fff;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 15px 26px rgba(28, 42, 91, 0.08);
}

.wd-about-team .wd-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wd-about-service-card h3,
.wd-about-team-card h3 {
  margin: 0;
  color: #243268;
}

.wd-about-service-card p,
.wd-about-team-card p {
  margin: 0.45rem 0 0;
  color: #54607f;
}

.wd-about-team {
  background: #fff;
}

.wd-about-team-photo {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #273171 0%, #5f74f3 100%);
  margin-bottom: 0.75rem;
}

.wd-about-team-image {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #e1e8fa;
  margin-bottom: 0.75rem;
  background: #fff;
}

.wd-about-clients {
  background:
    radial-gradient(560px 280px at 100% 100%, rgba(238, 49, 49, 0.08), transparent 68%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.wd-about-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wd-about-client-item {
  border: 1px solid #dde5f7;
  border-radius: 14px;
  background: #fff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.wd-about-client-item img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.84;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.wd-about-client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.wd-about-client-fallback {
  color: #556184;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.wd-about-cta {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .wd-about-main-grid {
    grid-template-columns: 1fr;
  }

  .wd-about-team .wd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-about-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wd-about-intro {
    padding: 4.2rem 0 3.5rem;
  }

  .wd-about-main-media,
  .wd-about-main-media img {
    min-height: 280px;
  }

  .wd-about-client-grid {
    grid-template-columns: 1fr;
  }

  .wd-about-team .wd-grid {
    grid-template-columns: 1fr;
  }

  .wd-about-team-photo,
  .wd-about-team-image {
    width: 82px;
    height: 82px;
  }
}

/* Home page redesign */
.home .wd-main section {
  padding: 5.5rem 0;
}

.home h1,
.home h2,
.home h3 {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.home [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.wd-home-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 500px at 88% -4%, rgba(112, 88, 255, 0.45), transparent 60%),
    radial-gradient(900px 420px at -2% 98%, rgba(238, 49, 49, 0.24), transparent 60%),
    linear-gradient(112deg, rgba(12, 15, 34, 0.96) 0%, rgba(28, 42, 96, 0.92) 55%, rgba(18, 42, 92, 0.9) 100%),
    url("/wp-content/uploads/2021/09/wwwDream-background.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.wd-home-hero .wd-hero-overlay {
  background: linear-gradient(102deg, rgba(8, 12, 28, 0.86) 12%, rgba(8, 12, 28, 0.2) 72%);
}

.wd-home-hero-glow {
  position: absolute;
  inset: -12% -18% auto auto;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(238, 49, 49, 0.2), rgba(238, 49, 49, 0));
  z-index: 0;
  pointer-events: none;
}

.wd-home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.wd-home-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.86);
}

.wd-home-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.1vw, 4.9rem);
  line-height: 1.03;
  max-width: 13ch;
}

.wd-home-hero-lead {
  margin: 1.25rem 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.wd-home-hero-chips {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.wd-home-hero-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.wd-home-actions {
  margin-top: 2.1rem;
  gap: 1.45rem;
}

.wd-home-actions .wd-btn {
  display: inline-flex;
  align-items: center;
  min-width: 168px;
  min-height: 48px;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.home .wd-btn {
  backdrop-filter: blur(2px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home .wd-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 24, 56, 0.28);
}

.wd-home-metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.wd-home-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.wd-home-metrics strong {
  display: block;
  font-size: 1.07rem;
  color: #fff;
}

.wd-home-metrics span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.92rem;
}

.wd-home-services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 74%);
}

.wd-home-services::before,
.wd-home-services::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.wd-home-services::before {
  width: 320px;
  height: 320px;
  right: -100px;
  top: -130px;
  background: radial-gradient(circle, rgba(96, 119, 248, 0.22), rgba(96, 119, 248, 0));
}

.wd-home-services::after {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(238, 49, 49, 0.16), rgba(238, 49, 49, 0));
}

.wd-home-services .wd-shell {
  position: relative;
  z-index: 1;
}

.wd-home-logos {
  background: #fff;
  padding-top: 1.6rem !important;
  padding-bottom: 1.4rem !important;
}

.wd-home-logos-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.wd-home-logos-head .wd-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a7697;
}

.wd-home-logos-head p:last-child {
  margin: 0;
  color: #64708f;
  font-size: 0.92rem;
}

.wd-logo-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.wd-logo-track {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  animation: wd-logo-scroll 34s linear infinite;
}

.wd-logo-slider:hover .wd-logo-track {
  animation-play-state: paused;
}

.wd-logo-slide {
  width: clamp(185px, 20vw, 270px);
  height: 102px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.65rem;
}

.wd-logo-slide img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.wd-logo-slide:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.wd-logo-slide-fallback {
  color: #4f5872;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

@keyframes wd-logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home .wd-home-head {
  margin-bottom: 1.45rem;
}

.home .wd-home-head .wd-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5f6a86;
}

.home .wd-home-head h2 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.8rem, 3.8vw, 2.65rem);
  line-height: 1.14;
  color: #1b2452;
}

.home .wd-home-head .wd-sub {
  margin-top: 0.7rem;
  max-width: 66ch;
  font-size: 1.02rem;
  line-height: 1.62;
  color: #5b6480;
}

.wd-home-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.wd-home-service-item {
  position: relative;
  border: 1px solid #dce3f5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  padding: 1.2rem 1.25rem 1.3rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wd-home-service-item:hover {
  transform: translateY(-4px);
  border-color: #c2cfef;
  box-shadow: 0 20px 32px rgba(28, 44, 93, 0.14);
}

.wd-home-service-icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: #273171;
  border: 1px solid #d9e1f5;
  background: linear-gradient(140deg, #ffffff 0%, #eef3ff 100%);
}

.wd-home-service-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.wd-home-service-icon--web {
  color: #2347c5;
}

.wd-home-service-icon--brand {
  color: #7a3ddd;
}

.wd-home-service-icon--print {
  color: #0f7a88;
}

.wd-home-service-icon--digital {
  color: #d83c49;
}

.wd-home-service-item h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: #1d2857;
}

.wd-home-service-item p {
  margin: 0;
  color: #5c667d;
}

.wd-home-service-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #273171;
  font-weight: 700;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(39, 49, 113, 0.22);
  padding-bottom: 0.08rem;
}

.wd-home-service-btn::after {
  content: "->";
  transition: transform 0.2s ease;
}

.wd-home-service-btn:hover::after {
  transform: translateX(4px);
}

.wd-home-projects {
  background:
    radial-gradient(840px 300px at 95% -10%, rgba(238, 49, 49, 0.24), transparent 58%),
    radial-gradient(780px 320px at 4% 0%, rgba(114, 86, 255, 0.24), transparent 62%),
    linear-gradient(165deg, #0d132f 0%, #18245b 52%, #0f1a45 100%);
  color: #fff;
}

.wd-home-projects .wd-home-head h2 {
  color: #fff;
}

.wd-home-projects .wd-home-head .wd-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.wd-home-projects .wd-home-head .wd-sub {
  color: rgba(237, 241, 255, 0.82);
}

.wd-case-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}

.wd-case-viewport {
  overflow: hidden;
}

.wd-case-track {
  display: flex;
  gap: 0.95rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.wd-case-slide {
  flex: 0 0 calc((100% - (0.95rem * 2)) / 3);
  min-width: 0;
}

.wd-case-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  min-height: 320px;
  border: 1px solid rgba(187, 201, 244, 0.22);
  background: #1a2556;
  box-shadow: 0 18px 28px rgba(5, 10, 32, 0.3);
}

.wd-case-link img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.wd-case-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 40, 0.06) 30%, rgba(10, 16, 40, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wd-case-title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.02rem, 1.9vw, 1.24rem);
  line-height: 1.24;
  transform: translateY(14px);
  opacity: 0;
  z-index: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wd-case-link:hover img {
  transform: scale(1.05);
}

.wd-case-link:hover::after {
  opacity: 1;
}

.wd-case-link:hover .wd-case-title {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .wd-case-link::after,
  .wd-case-title {
    opacity: 1;
    transform: translateY(0);
  }
}

.wd-case-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfe5ff;
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}

.wd-case-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(223, 232, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #f2f5ff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wd-case-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.wd-case-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.wd-case-cta-wrap {
  margin-top: 1.35rem;
  text-align: center;
}

.wd-case-cta {
  min-width: 0;
  padding: 0.3rem 0.62rem;
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent !important;
  border-width: 1px;
  border-color: rgba(223, 232, 255, 0.26) !important;
  color: rgba(236, 242, 255, 0.78) !important;
  box-shadow: none !important;
  letter-spacing: 0.01em;
}

.wd-case-cta:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

.wd-home-process {
  background:
    radial-gradient(740px 320px at 100% -10%, rgba(39, 49, 113, 0.08), transparent 60%),
    #fff;
}

.wd-home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wd-home-process .wd-step {
  padding: 1.1rem 1.05rem 1.2rem;
  border-radius: 16px;
}

.wd-home-process .wd-step h3 {
  margin: 0 0 0.42rem;
  font-size: 1.02rem;
}

.wd-home-testimonials {
  background:
    radial-gradient(760px 280px at 8% -14%, rgba(39, 49, 113, 0.12), transparent 60%),
    radial-gradient(520px 240px at 96% 10%, rgba(238, 49, 49, 0.09), transparent 68%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.wd-home-testimonials .wd-grid {
  gap: 1.1rem;
}

.wd-home-testimonials .wd-testimonial {
  border: 1px solid #e1e7f8;
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 24px rgba(26, 42, 91, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}

.wd-home-testimonials .wd-testimonial p {
  color: #4f5872;
  position: relative;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.wd-home-testimonials .wd-testimonial p::before {
  content: "“";
  color: #c3cae7;
  font-size: 2.25rem;
  line-height: 0;
  margin-right: 0.24rem;
  vertical-align: middle;
}

.wd-home-testimonials .wd-testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.72rem;
  border-top: 1px solid #e8ecf8;
}

.wd-home-testimonials .wd-testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #e9edf9;
  background: #fff;
  flex: 0 0 auto;
}

.wd-home-testimonials .wd-testimonial-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #273171 0%, #5e73ef 100%);
}

.wd-home-testimonials .wd-testimonial h4 {
  margin: 0;
  color: #223068;
  font-size: 1rem;
}

.wd-home-cta {
  background: #fff;
  padding-top: 3.2rem !important;
}

.wd-home-cta-panel {
  border-radius: 22px;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.4rem;
  background:
    linear-gradient(120deg, rgba(39, 49, 113, 0.96) 0%, rgba(88, 58, 163, 0.96) 62%, rgba(238, 49, 49, 0.95) 100%);
  color: #fff;
  box-shadow: 0 24px 44px rgba(28, 30, 78, 0.26);
}

.wd-home-cta-panel .wd-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.wd-home-cta-panel h2 {
  margin: 0 0 0.42rem;
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
}

.wd-home-cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1024px) {
  .wd-home-service-grid,
  .wd-home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-case-slide {
    flex-basis: calc((100% - 0.95rem) / 2);
  }

  .wd-home-metrics {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .wd-home-cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .home .wd-main section {
    padding: 4rem 0;
  }

  .wd-home-hero {
    min-height: calc(100svh - 96px);
  }

  .wd-home-hero h1 {
    max-width: 100%;
  }

  .wd-home-actions {
    margin-top: 1.6rem;
    gap: 0.95rem;
  }

  .wd-home-hero-chips {
    margin-top: 1rem;
    gap: 0.45rem;
  }

  .wd-home-hero-chips span {
    font-size: 0.78rem;
    padding: 0.4rem 0.68rem;
  }

  .wd-home-actions .wd-btn {
    min-width: 0;
  }

  .wd-home-service-grid,
  .wd-home-process-grid {
    grid-template-columns: 1fr;
  }

  .wd-case-slider {
    grid-template-columns: minmax(0, 1fr);
  }

  .wd-case-nav {
    display: none;
  }

  .wd-case-slide {
    flex-basis: 100%;
  }

  .wd-case-link,
  .wd-case-link img {
    min-height: 260px;
  }

  .wd-logo-slide {
    width: 168px;
    height: 88px;
  }

  .wd-logo-slide img {
    max-height: 54px;
  }

  .wd-home-logos-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-logo-track {
    animation: none;
  }
}

/* Projects page template: masonry gallery */
.wd-projects-template {
  position: relative;
  padding: 2.45rem 1.4rem 2.7rem !important;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.wd-projects-template .wd-page-head {
  margin-bottom: 1rem;
}

.wd-projects-template .wd-page-head h1 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(1.95rem, 4.1vw, 3rem);
  line-height: 1.12;
  color: #1a2451;
}

.wd-projects-template .wd-page-head p {
  margin: 0.58rem auto 0;
  max-width: 66ch;
  color: #576282;
  font-size: 1rem;
  line-height: 1.65;
}

.wd-projects-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
}

.wd-projects-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #d7def2;
  background: #fff;
  color: #4e5a78;
  font-size: 0.79rem;
  font-weight: 700;
}

.wd-projects-meta-pill-link {
  color: #273171;
}

.wd-projects-meta-pill-link:hover {
  border-color: #273171;
  background: #273171;
  color: #fff;
}

.wd-projects-filter-bar {
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.wd-projects-template .wd-filter-pill {
  padding: 0.34rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #d7def2;
  color: #4e5a78;
  background: #fff;
  border-radius: 999px;
}

.wd-projects-template .wd-filter-pill:hover,
.wd-projects-template .wd-filter-pill.is-active {
  color: #fff;
  background: #273171;
  border-color: #273171;
}

.wd-projects-masonry {
  column-count: 3;
  column-gap: 1rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wd-projects-masonry.is-filtering {
  opacity: 0.3;
  transform: translateY(6px);
}

.wd-projects-masonry.is-enter {
  animation: wd-projects-masonry-in 0.34s ease;
}

@keyframes wd-projects-masonry-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wd-projects-masonry-item {
  break-inside: avoid;
  margin: 0 0 1rem;
}

.wd-projects-masonry-link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 0;
  background: #e2e8f7;
  box-shadow: 0 16px 24px rgba(25, 38, 84, 0.08);
}

.wd-projects-masonry-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.wd-projects-masonry-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 46, 0.08) 45%, rgba(12, 18, 46, 0.84) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.wd-projects-masonry-title {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.wd-projects-masonry-link:hover img {
  transform: scale(1.04);
}

.wd-projects-masonry-link:hover::after {
  opacity: 1;
}

.wd-projects-masonry-link:hover .wd-projects-masonry-title {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .wd-projects-masonry-link::after,
  .wd-projects-masonry-title {
    opacity: 1;
    transform: translateY(0);
  }
}

.wd-projects-masonry-fallback {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #273171;
  font-weight: 700;
}

.wd-projects-load-more {
  margin: 1.05rem auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #445172;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #d9e1f5;
  background: #fff;
}

.wd-projects-load-more[hidden] {
  display: none !important;
}

.wd-projects-load-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #d5ddf2;
  border-top-color: #273171;
  border-radius: 999px;
  animation: wd-projects-spin 0.8s linear infinite;
}

.wd-projects-load-sentinel {
  height: 2px;
  width: 100%;
  margin-top: 0.6rem;
}

.wd-projects-empty {
  margin: 0;
  text-align: center;
  color: #5c667d;
}

.wd-projects-empty-wrap {
  margin-top: 1rem;
  padding: 1.15rem 0.95rem 1.05rem;
  border: 1px solid #dce4f7;
  border-radius: 16px;
  background: #fff;
}

.wd-projects-empty-wrap p + p {
  margin-top: 0.75rem;
}

@keyframes wd-projects-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .wd-projects-template {
    padding: 1.9rem 1rem 2.15rem !important;
  }

  .wd-projects-masonry {
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .wd-projects-template {
    padding: 1.55rem 0.8rem 1.75rem !important;
    border-radius: 18px;
  }

  .wd-projects-filter-bar {
    padding: 0;
  }

  .wd-projects-masonry {
    column-count: 1;
  }
}

/* Single project refinement */
.single-project .wd-project-hero-alt__hero {
  min-height: 78vh;
}

.single-project .wd-project-hero-alt__overlay {
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.2) 18%, rgba(8, 12, 28, 0.88) 100%);
}

.single-project .wd-project-hero-alt__headline-wrap {
  padding-bottom: 4rem;
}

.single-project .wd-project-hero-alt__headline-wrap h1 {
  max-width: 18ch;
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  line-height: 1.03;
}

.single-project .wd-project-hero-alt__summary {
  margin-top: 1.2rem;
  max-width: 62ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
}

.single-project .wd-project-hero-alt__body {
  gap: 2.3rem;
  padding-top: 3.4rem !important;
}

.single-project .wd-project-hero-alt__meta {
  border: 1px solid #dce4f7;
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
  box-shadow: 0 14px 24px rgba(25, 38, 84, 0.08);
  top: 112px;
}

.single-project .wd-project-hero-alt__meta h2 {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.single-project .wd-meta-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #273171 0%, #5f74f3 100%);
}

.single-project .wd-project-hero-alt__meta .wd-btn-solid {
  margin-top: 0.85rem;
  width: 100%;
  justify-content: center;
}

.single-project .wd-project-hero-alt__content {
  max-width: 860px;
  color: #37415b;
  font-size: 1.03rem;
  line-height: 1.78;
}

.single-project .wd-project-hero-alt__content h2,
.single-project .wd-project-hero-alt__content h3 {
  margin-top: 2rem;
  color: #1b2452;
  font-family: "Sora", "Manrope", sans-serif;
}

.single-project .wd-project-story-block {
  margin-bottom: 1.1rem;
  border-radius: 20px;
}

.single-project .wd-project-story-block__caption {
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 12, 28, 0.48);
}

.single-project .wd-project-hero-alt__nav {
  padding-top: 2.2rem !important;
  padding-bottom: 2.4rem !important;
}

.single-project .wd-project-hero-alt__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #d9e1f4;
  background: #fff;
}

.single-project .wd-project-hero-alt__nav a:hover {
  background: #273171;
  color: #fff;
  border-color: #273171;
}

@media (max-width: 1024px) {
  .single-project .wd-project-hero-alt__hero {
    min-height: 64vh;
  }

  .single-project .wd-project-hero-alt__headline-wrap {
    padding-bottom: 2.5rem;
  }

  .single-project .wd-project-hero-alt__meta {
    top: auto;
  }
}

@media (max-width: 767px) {
  .single-project .wd-project-hero-alt__headline-wrap h1 {
    max-width: 100%;
  }

  .single-project .wd-project-hero-alt__summary {
    font-size: 1rem;
  }

  .single-project .wd-project-story-block {
    border-radius: 14px;
  }
}

/* Services page (page template) */
.wd-services-page-hero {
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.22), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%),
    linear-gradient(165deg, #0f1638 0%, #1a2865 52%, #111f53 100%);
  color: #fff;
  padding: 5.35rem 0 4.5rem;
}

.wd-services-page-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.06;
}

.wd-services-page-hero p {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: rgba(236, 242, 255, 0.9);
}

.wd-services-hero-badges {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.wd-services-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 242, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 246, 255, 0.95);
  font-size: 0.82rem;
  font-weight: 600;
}

.wd-services-jump {
  background: #f4f8ff;
  border-top: 1px solid #e2e9fb;
  border-bottom: 1px solid #e2e9fb;
  padding: 1rem 0 !important;
}

.wd-services-jump .wd-kicker {
  margin: 0 0 0.48rem;
}

.wd-services-jump nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.wd-services-jump nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d4def5;
  background: #fff;
  color: #273171;
  font-size: 0.85rem;
  font-weight: 700;
}

.wd-services-jump nav a:hover {
  border-color: #273171;
  background: #273171;
  color: #fff;
}

.wd-services-page-intro {
  background: #fff;
  padding: 2rem 0 0.5rem;
}

.wd-services-page-intro p {
  margin: 0;
  max-width: 72ch;
  color: #4f5972;
  font-size: 1.05rem;
  line-height: 1.72;
}

.wd-services-page-overview {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
}

.wd-services-page-overview .wd-section-head h2 {
  margin: 0;
}

.wd-services-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wd-services-overview-card {
  border: 1px solid #dbe3f5;
  border-radius: 16px;
  background: #fff;
  padding: 1rem 1rem 1.05rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wd-services-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(26, 42, 91, 0.1);
}

.wd-services-overview-card h3 {
  margin: 0 0 0.42rem;
  font-size: 1.03rem;
  color: #1f2c61;
}

.wd-services-overview-card p {
  margin: 0;
  color: #5c6783;
  font-size: 0.94rem;
}

.wd-services-overview-card a {
  margin-top: 0.8rem;
  display: inline-flex;
  color: #273171;
  font-weight: 700;
  font-size: 0.9rem;
}

.wd-services-detail {
  background: #fff;
  padding: 4.1rem 0 !important;
  scroll-margin-top: 108px;
}

.wd-services-detail.is-reverse {
  background: #f8faff;
}

.wd-services-detail + .wd-services-detail {
  border-top: 1px solid #edf2ff;
}

.wd-services-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.9rem;
  align-items: stretch;
}

.wd-services-detail.is-reverse .wd-services-detail-media {
  order: 2;
}

.wd-services-detail.is-reverse .wd-services-detail-copy {
  order: 1;
}

.wd-services-detail-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe2f5;
  box-shadow: 0 18px 28px rgba(24, 38, 82, 0.12);
  background: #e5ebfb;
}

.wd-services-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.wd-services-detail-media-fallback {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #25326c;
  font-weight: 700;
}

.wd-services-related-projects {
  margin-top: 0.85rem;
  border: 1px solid #d8e0f4;
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem;
}

.wd-services-related-projects h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: #1f2c61;
}

.wd-services-related-projects ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.wd-services-related-projects li a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.5rem;
  align-items: center;
  border: 1px solid #e5ebfa;
  border-radius: 10px;
  background: #fbfcff;
  padding: 0.34rem 0.44rem;
  color: #273171;
  font-weight: 600;
  font-size: 0.9rem;
}

.wd-services-related-projects li a:hover {
  border-color: #c8d5f5;
  background: #f3f7ff;
}

.wd-services-related-projects img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.wd-services-detail-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: #182251;
}

.wd-services-detail-meta {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.wd-services-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.26rem 0.64rem;
  border-radius: 999px;
  border: 1px solid #d4def5;
  background: #f7faff;
  color: #2b3c79;
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-services-detail-copy div {
  margin-top: 1rem;
  color: #4a566f;
  max-width: 58ch;
  line-height: 1.72;
}

.wd-services-detail-copy .wd-btn {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 42px;
  padding: 0.5rem 0.95rem;
  text-align: center;
  line-height: 1.2;
  background: transparent;
  border-color: #273171;
  color: #273171;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wd-services-detail-copy .wd-btn:hover {
  background: #273171;
  border-color: #273171;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 24, 56, 0.2);
}

.wd-services-process {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.wd-services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.wd-services-process-grid article {
  border: 1px solid #dce4f7;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.wd-services-process-grid strong {
  color: #273171;
  font-size: 0.82rem;
}

.wd-services-process-grid h3 {
  margin: 0.32rem 0 0.3rem;
  color: #1f2c61;
}

.wd-services-process-grid p {
  margin: 0;
  color: #596583;
}

.wd-services-why {
  background:
    radial-gradient(540px 260px at 10% 0%, rgba(96, 119, 248, 0.15), transparent 65%),
    radial-gradient(560px 280px at 100% 100%, rgba(238, 49, 49, 0.08), transparent 68%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  padding: 4.2rem 0 4.45rem;
}

.wd-services-why .wd-section-head {
  margin-bottom: 1.2rem;
}

.wd-services-why .wd-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #1a2660;
}

.wd-services-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wd-services-why-grid article {
  position: relative;
  border: 1px solid #d4def5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 16px 28px rgba(32, 46, 97, 0.08);
  padding: 1.18rem 1.12rem 1.12rem;
  overflow: hidden;
}

.wd-services-why-grid article::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -54px;
  top: -58px;
  background: radial-gradient(circle, rgba(96, 119, 248, 0.3) 0%, rgba(96, 119, 248, 0) 70%);
  pointer-events: none;
}

.wd-services-why-grid h3 {
  margin: 0 0 0.42rem;
  color: #1f2c61;
  font-size: 1.05rem;
}

.wd-services-why-grid p {
  margin: 0;
  color: #52607f;
  line-height: 1.7;
}

.wd-service-breadcrumb {
  margin: 0 0 0.8rem;
  font-size: 0.86rem;
  color: #65718f;
}

.wd-service-breadcrumb a {
  color: #273171;
  font-weight: 700;
}

/* Single service premium template */
.single-service .wd-service-single-premium__hero {
  position: relative;
  min-height: clamp(560px, 72vh, 820px);
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.2), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%),
    linear-gradient(165deg, #0f1638 0%, #1a2865 52%, #111f53 100%);
}

.single-service .wd-service-single-premium__media,
.single-service .wd-service-single-premium__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service .wd-service-single-premium__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.1) 8%, rgba(8, 12, 28, 0.9) 100%);
}

.single-service .wd-service-single-premium__overlay {
  background:
    radial-gradient(760px 260px at 96% -10%, rgba(238, 49, 49, 0.2), transparent 62%),
    radial-gradient(700px 280px at -10% 100%, rgba(96, 119, 248, 0.24), transparent 62%);
}

.single-service .wd-service-single-premium__headline {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(4.2rem, 9vh, 6.6rem);
  padding-bottom: clamp(2.3rem, 5.4vh, 3.5rem);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-center;
  align-items: flex-start;
  max-width: 74ch;
}

.single-service .wd-service-single-premium__headline .wd-service-breadcrumb {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  margin-left: 0;
  padding-left: 0;
}

.single-service .wd-service-single-premium__headline .wd-service-breadcrumb a {
  color: #fff;
}

.single-service .wd-service-single-premium__headline .wd-service-breadcrumb span {
  margin-inline: 0.42rem;
  opacity: 0.75;
}

.single-service .wd-service-single-premium__headline h1 {
  margin: 0.15rem 0 0;
  max-width: 15ch;
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  line-height: 1.03;
  text-wrap: balance;
  margin-left: 0;
  padding-left: 0;
}

.single-service .wd-service-single-premium__summary {
  margin: 0.95rem 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.72;
  margin-left: 0;
  padding-left: 0;
}

.single-service .wd-service-single-premium__headline .wd-actions {
  margin-top: 1.25rem;
  row-gap: 0.7rem;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.82rem;
}

.single-service .wd-service-single-premium__actions .wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 44px;
  text-align: center;
  line-height: 1.2;
}

.single-service .wd-service-single-premium__body {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 2.2rem;
  padding-top: 0 !important;
  padding-bottom: 1rem !important;
  align-items: start;
  margin-top: -2.4rem;
  position: relative;
  z-index: 4;
}

.single-service .wd-service-single-premium__meta {
  position: sticky;
  top: 96px;
  border: 1px solid #dce4f7;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f7ff 100%);
  box-shadow: 0 16px 30px rgba(25, 38, 84, 0.11);
  padding: 1.1rem 1rem;
  align-self: start;
}

.single-service .wd-service-single-premium__meta h2 {
  margin: 0 0 0.8rem;
  color: #1f2c61;
  font-size: 1.05rem;
}

.single-service .wd-service-single-premium__meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.single-service .wd-service-single-premium__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid #dce4f6;
}

.single-service .wd-service-single-premium__meta li:last-child {
  border-bottom: 0;
}

.single-service .wd-service-single-premium__meta .wd-meta-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Sora", "Manrope", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #273171 0%, #5f74f3 100%);
  margin-top: 0.08rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transform: translateZ(0);
}

.single-service .wd-service-single-premium__meta .wd-meta-text strong {
  display: block;
  color: #1f2c61;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.single-service .wd-service-single-premium__meta .wd-meta-text span {
  display: block;
  margin-top: 0.14rem;
  color: #516183;
  line-height: 1.5;
  font-size: 0.93rem;
}

.single-service .wd-service-single-premium__meta .wd-btn-solid {
  width: 100%;
  justify-content: center;
  margin-top: 0.88rem;
  min-height: 44px;
  text-align: center;
}

.single-service .wd-service-single-premium__content {
  color: #384468;
  font-size: 1.04rem;
  line-height: 1.78;
  background: #fff;
  border: 1px solid #e8eefc;
  border-radius: 18px;
  padding: 1.45rem 1.55rem;
  box-shadow: 0 14px 26px rgba(24, 38, 82, 0.08);
}

.single-service .wd-service-single-premium__content > *:first-child {
  margin-top: 0;
}

.single-service .wd-service-single-premium__content h2,
.single-service .wd-service-single-premium__content h3 {
  color: #1b2452;
  font-family: "Sora", "Manrope", sans-serif;
  margin-top: 1.95rem;
}

.single-service .wd-service-single-premium__content p,
.single-service .wd-service-single-premium__content ul,
.single-service .wd-service-single-premium__content ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

.single-service .wd-service-single-premium__content ul,
.single-service .wd-service-single-premium__content ol {
  padding-left: 1.2rem;
}

.single-service .wd-service-single-premium__steps {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.single-service .wd-service-single-premium__steps-wrap {
  padding-top: 0.4rem !important;
  padding-bottom: 0 !important;
}

.single-service .wd-service-single-premium__steps-wrap .wd-service-single-premium__steps {
  margin-top: 0;
}

.single-service .wd-service-single-premium__steps-head {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}

.single-service .wd-service-single-premium__steps-head .wd-kicker {
  margin: 0 0 0.3rem;
}

.single-service .wd-service-single-premium__steps-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
}

.single-service .wd-service-single-premium__steps-head p {
  margin: 0.45rem 0 0;
  color: #596689;
  max-width: 62ch;
}

.single-service .wd-service-single-premium__steps article {
  border: 1px solid #d4def5;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: 1.05rem 0.92rem 0.92rem;
  box-shadow: 0 12px 22px rgba(22, 35, 80, 0.08);
}

.single-service .wd-service-single-premium__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #273171 0%, #5f74f3 100%);
  margin-bottom: 0.52rem;
}

.single-service .wd-service-single-premium__steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.01rem;
}

.single-service .wd-service-single-premium__steps p {
  margin: 0;
  color: #566482;
  font-size: 0.92rem;
  line-height: 1.62;
}

.single-service .wd-service-single-premium__cta {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.single-service .wd-service-single-premium__cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.single-service .wd-service-single-premium__cta-actions .wd-btn {
  min-height: 44px;
  min-width: 148px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

  .wd-services-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-services-why-grid {
    grid-template-columns: 1fr;
  }

  .single-service .wd-service-single-premium__hero {
    min-height: 58vh;
  }

  .single-service .wd-service-single-premium__body {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-top: 2rem !important;
    margin-top: -1.2rem;
  }

  .single-service .wd-service-single-premium__meta {
    position: static;
    max-width: 560px;
    margin-inline: auto;
  }

  .single-service .wd-service-single-premium__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .wd-services-page-hero {
    padding: 4.25rem 0 3.5rem;
  }

  .wd-services-detail-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .wd-services-detail.is-reverse .wd-services-detail-media,
  .wd-services-detail.is-reverse .wd-services-detail-copy {
    order: initial;
  }

  .wd-services-detail {
    padding: 3.1rem 0 !important;
  }

  .wd-services-why {
    padding: 3.25rem 0 3.5rem;
  }

  .wd-services-overview-grid,
  .wd-services-process-grid {
    grid-template-columns: 1fr;
  }

  .wd-services-jump nav {
    gap: 0.44rem;
  }

  .wd-services-jump nav a {
    font-size: 0.8rem;
    padding: 0.34rem 0.62rem;
  }

  .single-service .wd-service-single-premium__headline {
    padding-top: 3.1rem;
    padding-bottom: 1.85rem;
    max-width: 100%;
  }

  .single-service .wd-service-single-premium__headline h1 {
    max-width: 100%;
  }

  .single-service .wd-service-single-premium__summary {
    font-size: 1rem;
  }

  .single-service .wd-service-single-premium__meta {
    padding: 0.92rem 0.88rem;
  }

  .single-service .wd-service-single-premium__content {
    padding: 1.05rem;
    border-radius: 14px;
  }

  .single-service .wd-service-single-premium__cta {
    margin-bottom: 2rem;
  }
}
