/* ======================================================
   OUR PROCESS PAGE - DELOSWEB
   Elegant / minimalist
====================================================== */

.dw-process-page {
  --ink: #000038;
  --muted: rgba(0, 0, 56, 0.60);
  --soft-text: rgba(0, 0, 56, 0.72);
  --line: rgba(0, 0, 56, 0.10);
  --accent: #2d80b7;
  --soft: #f7f9fc;
  background: #ffffff;
}

.ks-cta-shape-2{
  right: 0;
  left: auto;
}

.dw-process-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.dw-process-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.dw-process-hero {
  padding: 150px 0 70px;
  text-align: center;
}

.dw-process-hero h1 {
  margin: 18px auto 22px;
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: clamp(52px, 5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.dw-process-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.dw-process-rule {
  max-width: 1120px;
  margin: 70px auto 0;
  height: 1px;
  background: var(--line);
}

/* ---------- Two paths ---------- */
.dw-process-paths {
  padding: 70px 0 30px;
}

.dw-process-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dw-process-path {
  padding: 18px 50px;
}

.dw-process-path:first-child {
  border-right: 1px solid var(--line);
  padding-left: 0;
}

.dw-process-path:last-child {
  padding-right: 0;
}

.dw-process-path h2 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.dw-process-path p {
  margin: 0 0 22px;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.75;
}

.dw-process-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.dw-process-link span {
  transition: transform 0.25s ease;
}

.dw-process-link:hover {
  color: var(--accent);
  gap: 14px;
}

/* ---------- Section ---------- */
.dw-process-section {
  padding: 80px 0;
}

.dw-process-section.is-soft {
  background: var(--soft);
}

.dw-process-section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.dw-process-section-head h2 {
  margin: 16px 0 16px;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.dw-process-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* ---------- Steps timeline ---------- */
.dw-process-steps {
  max-width: 720px;
  margin: 0 auto;
}

.dw-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 30px;
  padding-bottom: 44px;
}

.dw-process-step:last-child {
  padding-bottom: 0;
}

/* connecting line */
.dw-process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.dw-process-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.dw-process-step:hover .dw-process-num {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.is-soft .dw-process-num {
  background: var(--soft);
}

.dw-process-step-body {
  padding-top: 12px;
}

.dw-process-step-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.dw-process-step-body p {
  margin: 0;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- Important info note ---------- */
.dw-process-note {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.is-soft .dw-process-note {
  background: #ffffff;
}

.dw-process-note .dw-process-eyebrow {
  margin-bottom: 14px;
}

.dw-process-note p {
  margin: 0 0 14px;
  color: var(--soft-text);
  font-size: 15.5px;
  line-height: 1.75;
}

.dw-process-note p:last-child {
  margin-bottom: 0;
}

/* ---------- Final CTA ---------- */
.dw-process-final {
  padding: 110px 0 120px;
  text-align: center;
}

.dw-process-final h2 {
  margin: 16px auto 18px;
  max-width: 18ch;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.dw-process-final p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.dw-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.dw-process-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  background: var(--ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-process-btn:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.dw-process-btn.is-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.dw-process-btn.is-ghost:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .dw-process-hero {
    padding: 110px 0 50px;
  }

  .dw-process-rule {
    margin-top: 50px;
  }

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

  .dw-process-path {
    padding: 30px 0;
  }

  .dw-process-path:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dw-process-section {
    padding: 64px 0;
  }

  .dw-process-section-head {
    margin-bottom: 48px;
  }

  .dw-process-step {
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding-bottom: 38px;
  }

  .dw-process-num {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .dw-process-step:not(:last-child)::before {
    left: 23px;
    top: 48px;
  }

  .dw-process-note {
    padding: 28px 24px;
  }
}

/* ======================================================
   IMAGE SLOTS (placeholders for future images)
====================================================== */
.dw-process-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f4f7fb 0%, #ebf1f8 100%);
  aspect-ratio: 16 / 9;
}

/* When a real <img> is dropped in, it fills the frame */
.dw-process-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder hint (remove when adding the real image) */
.dw-process-media-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(0, 0, 56, 0.30);
  text-align: center;
  padding: 16px;
}

.dw-process-media-ph svg {
  width: 38px;
  height: 38px;
}

.dw-process-media-ph span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero banner slot (wide, cinematic) */
.dw-process-hero-banner {
  max-width: 1000px;
  margin: 58px auto 0;
  aspect-ratio: 21 / 9;
}

/* Featured slot inside Ready-to-Go / Custom sections */
.dw-process-feature {
  max-width: 880px;
  margin: 0 auto 60px;
  aspect-ratio: 16 / 9;
}

/* Thumbnail slot inside each path block */
.dw-process-path-thumb {
  aspect-ratio: 18 / 10;
  margin-bottom: 24px;
  border-radius: 14px;
}

@media (max-width: 767px) {
  .dw-process-hero-banner {
    margin-top: 40px;
    aspect-ratio: 16 / 10;
  }

  .dw-process-feature {
    margin-bottom: 44px;
  }
}

/* Main process hero image */
.dw-process-main-hero-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
  border-radius: 34px;
}

.dw-process-main-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Hide placeholder when image exists */
.dw-process-main-hero-image img + .dw-process-media-ph {
  display: none;
}

@media (max-width: 991px) {
  .dw-process-main-hero-image {
    height: 420px;
    border-radius: 28px;
  }
}

@media (max-width: 575px) {
  .dw-process-main-hero-image {
    height: 320px;
    border-radius: 22px;
  }
}

.header-style-eight .main-menu .navigation > li > a, .header-style-eight .main-menu .navigation .dropdown .dropdown-btn {
    color: #000038 !important;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}



.header-style-eight .outer-box .mobile-nav-toggler span {
    background-color: #000038  !important;
    display: block;
    height: 2px;
    transition: 0.3s;
    width: 25px;
}

.main-header .sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 56, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.35s ease;
}

.main-header.fixed-header .sticky-header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-header .inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85px;
}

.sticky-header .logo img {
  max-width: 210px;
}

.sticky-header .navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.sticky-header .navigation li {
  list-style: none;
}

.sticky-header .navigation li a {
  color: #000038;
  font-weight: 700;
}


.sticky-header,
.sticky-header a,
.sticky-header .navigation li a {
  color: #000038 !important;
}

.sticky-header * {
  color: #000038 !important;
}

/* Sticky header text color fix */
.main-header .sticky-header .main-menu .navigation > li > a,
.main-header.header-style-eight .sticky-header .main-menu .navigation > li > a,
.main-header.inner-page .sticky-header .main-menu .navigation > li > a {
  color: #000038 !important;
  -webkit-text-fill-color: #000038 !important;
}