/* video bg */

/* ======================================
   DelosWeb — Full-Screen Video Hero
====================================== */

/* Base section */
.dw-hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--theme-color-dark);
}

/* Video layer */
.dw-hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.dw-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.08) brightness(0.88);
  will-change: transform;
}

/* Multi-layer cinematic overlay */
.dw-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(108deg,
      rgba(0, 0, 52, 0.70) 0%,
      rgba(3, 27, 102, 0.72) 52%,
      rgba(0, 0, 52, 0.55) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 52, 0.08) 0%,
      rgba(0, 0, 52, 0.48) 78%,
      rgba(0, 0, 52, 0.70) 100%);
}

/* Ambient glow accents */
.dw-hero-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.dw-hero-glow-1 {
  width: 620px;
  height: 620px;
  top: -200px;
  right: -100px;
  background: rgba(var(--theme-color1-rgb), 0.20);
  animation: dwHeroGlowShift 8s ease-in-out infinite alternate;
}

.dw-hero-glow-2 {
  width: 440px;
  height: 440px;
  bottom: -200px;
  left: -80px;
  background: rgba(3, 27, 102, 0.60);
}

@keyframes dwHeroGlowShift {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(40px) scale(1.12);
  }
}

/* Content wrapper */
.dw-hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 200px 0 130px;
}

/* Eyebrow pill */
.dw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
}

/* Live-dot pulse */
.dw-hero-eyebrow-pulse {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cd9a0;
  box-shadow: 0 0 0 0 rgba(76, 217, 160, 0.60);
  animation: dwHeroDotPulse 2.2s ease-out infinite;
}

@keyframes dwHeroDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 217, 160, 0.60);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(76, 217, 160, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 217, 160, 0);
  }
}

/* Main headline */
.dw-hero-headline {
  margin: 0 0 28px;
  color: var(--theme-color-white);
  font-size: clamp(44px, 5vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 50px rgba(var(--theme-color-dark-rgb), 0.50);
}

/* Description */
.dw-hero-subtext {
  max-width: 620px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.78;
  font-weight: 400;
}

.dw-hero-subtext strong {
  color: var(--theme-color-white);
  font-weight: 800;
}

/* Button group */
.dw-hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}

/* Primary CTA — white pill */
.dw-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 22px 55px rgba(var(--theme-color-dark-rgb), 0.30),
    0 0 0 1.5px rgba(255, 255, 255, 0.80);
  transition: background 0.28s ease, color 0.28s ease,
    transform 0.28s ease, box-shadow 0.28s ease;
}

.dw-hero-cta-primary:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(var(--theme-color-dark-rgb), 0.40),
    0 0 0 1.5px rgba(var(--theme-color1-rgb), 0.65);
}

/* Secondary CTA — ghost */
.dw-hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  background: transparent;
  color: var(--theme-color-white);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.28s ease, border-color 0.28s ease,
    transform 0.28s ease;
}

.dw-hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--theme-color-white);
  transform: translateY(-4px);
}

/* Trust row */
.dw-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.dw-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
}

.dw-hero-trust-item i {
  color: var(--theme-color1);
  font-size: 15px;
}

.dw-hero-trust-stars {
  display: flex;
  gap: 2px;
  color: #f5c842;
  font-size: 13px;
}

.dw-hero-trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

/* Scroll cue (mouse icon) */
.dw-hero-scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dw-hero-scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.30);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.dw-hero-scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.65);
  animation: dwHeroScrollDot 1.9s ease-in-out infinite;
}

@keyframes dwHeroScrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  80% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* ── Responsive: Large tablet (max 1199px) ── */
@media (max-width: 1199px) {
  .dw-hero-content-wrap {
    padding: 180px 0 110px;
  }

  .dw-hero-glow-1 {
    width: 420px;
    height: 420px;
  }
}

/* ── Responsive: Tablet portrait (max 991px) ── */
@media (max-width: 991px) {
  .dw-hero-content-wrap {
    padding: 160px 0 95px;
  }

  .dw-hero-subtext {
    max-width: 100%;
    font-size: 17px;
  }

  .dw-hero-glow-1,
  .dw-hero-glow-2 {
    display: none;
  }
}

/* ── Responsive: Mobile landscape (max 767px) ── */
@media (max-width: 767px) {
  .dw-hero-video-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .dw-hero-content-wrap {
    padding: 140px 0 85px;
  }

  .dw-hero-eyebrow {
    font-size: 11px;
    padding: 8px 14px;
    gap: 8px;
  }

  .dw-hero-subtext {
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 36px;
  }

  .dw-hero-btn-group {
    margin-bottom: 40px;
    gap: 12px;
  }

  .dw-hero-cta-primary,
  .dw-hero-cta-secondary {
    min-height: 52px;
    padding: 0 24px;
    font-size: 14px;
  }

  .dw-hero-trust-sep {
    display: none;
  }

  .dw-hero-trust-item {
    font-size: 13px;
  }

  .dw-hero-scroll-cue {
    bottom: 24px;
  }
}

/* ── Responsive: Small phones (max 575px) ── */
@media (max-width: 575px) {
  .dw-hero-content-wrap {
    padding: 130px 0 72px;
  }

  .dw-hero-headline {
    letter-spacing: -0.03em;
  }

  .dw-hero-btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .dw-hero-cta-primary,
  .dw-hero-cta-secondary {
    width: 100%;
    justify-content: center;
    min-height: 54px;
  }

  .dw-hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── Reduced motion — swap video for plain dark bg ── */
@media (prefers-reduced-motion: reduce) {
  .dw-hero-bg-video {
    display: none;
  }

  .dw-hero-video-section {
    background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color3) 55%, var(--theme-color-dark) 100%);
  }

  .dw-hero-eyebrow-pulse {
    animation: none;
  }

  .dw-hero-scroll-dot {
    animation: none;
  }

  .dw-hero-glow-1 {
    animation: none;
  }
}

/* ======================================
   End Video Hero
====================================== */


/* === Fix navbar wrap (DelosWeb header) === */

/* 1) Evita que los items del menú salten a una segunda fila */
.main-header .main-menu .navigation {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
}

.ks-hero-2-title,
.ks-hero-2-text p {
  max-width: 1060px !important;
}

.main-header .main-menu .navigation>li {
  white-space: nowrap;
}

/* 2) Alinea verticalmente logo / menú / botón en una sola línea */
.main-header .main-box.row {
  align-items: center;
}

/* 3) El menú empuja hacia la derecha, pegado al botón */
.main-header .nav-outer .main-menu {
  width: 100%;
}

/* 4) Espaciado entre items: ajústalo si aún queda apretado en ~1200-1366px */
.main-header .main-menu .navigation>li:not(:last-child) {
  margin-right: 28px;
  /* baja a 22px si necesitas más espacio */
}

/* 5) Mantén el botón y el toggler sin reducirse */
.main-header .outer-box .info-box,
.main-header .outer-box .mobile-nav-toggler {
  flex-shrink: 0;
}

/* The homepage header has no .inner-page modifier (every other page uses
   header-style-eight.inner-page, which is position:absolute so the header
   floats over that page's hero). Without it, .main-header's base
   position:relative keeps the header in normal flow, pushing the hero
   section down and exposing the body's light background in the gap
   before the user scrolls past the sticky-header threshold. */
.dw-home-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Homepage responsive header: light controls over the dark hero. */
@media (max-width: 1199.98px) {
  .dw-home-header > .container .outer-box .mobile-nav-toggler {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .dw-home-header > .container .outer-box .mobile-nav-toggler span {
    background-color: var(--theme-color-white);
  }

  .dw-home-header > .container .outer-box .mobile-nav-toggler:focus-visible {
    outline: 2px solid var(--theme-color1);
    outline-offset: 3px;
  }
}

.hero-cartoon-icon {
  height: 700px;
}

.shape-3 img {
  height: 700px !important;
}

.ks-cta-shape-2 img {
  width: 100% !important;
  height: auto !important;
}

.contact-text {
  color: var(--theme-color-white);
}

.ks-hero-2-shape-1 {
  right: 0 !important;
}

.ks-hero-2-shape-6 {
  background: rgb(247 247 247 / 90%);
}

.service-area-three .shape-3 {
  z-index: 1;
}

/* ============================= */
/* Home Website Solution Select  */
/* ============================= */

.dw-solution-select-section {
  position: relative;
  padding: 110px 0 120px !important;
  padding-bottom: 0px !important;
  background: var(--theme-color-white) !important;
  overflow: hidden;
}

.dw-solution-select-section>.shape-1,
.dw-solution-select-section>.shape-2,
.dw-solution-select-section>.shape-3,
.dw-solution-select-section>.shape-bottom,
.dw-solution-select-section>.container-1830,
.dw-solution-select-section>.bg-shape {
  display: none !important;
}

.dw-solution-select-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.14), transparent 68%);
  pointer-events: none;
}

.dw-solution-select-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 30px;
  align-items: start;
  max-width: 1220px;
  margin: 0 auto;
}

.dw-solution-select-heading {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 105px;
  padding-top: 4px;
}

.dw-solution-select-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--theme-color1);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dw-solution-select-heading h2 {
  margin: 0;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.07em;
  overflow-wrap: normal;
  word-break: normal;
}

.dw-solution-select-cta {
  margin-top: 32px;
}

.dw-solution-select-cta--mobile {
  display: none;
}

.dw-solution-select-list {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 18px;
}

.dw-solution-select-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 286px;
  border-radius: 34px;
  isolation: isolate;
  transition: transform 0.28s ease;
}

.dw-solution-select-card:hover {
  transform: translateY(-5px);
}

.dw-solution-media {
  position: relative;
  min-height: 286px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px 0 0 34px;
  background: var(--theme-color-dark);
}

.dw-solution-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 36%, rgba(var(--theme-color1-rgb), 0.24), transparent 35%),
    linear-gradient(180deg, rgba(var(--theme-color-dark-rgb), 0.04), rgba(var(--theme-color-dark-rgb), 0.62));
  pointer-events: none;
}

.dw-solution-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.dw-solution-select-card:hover .dw-solution-bg {
  transform: scale(1.1);
  filter: brightness(1.08);
}

.dw-solution-character {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(var(--theme-color-dark-rgb), 0.34));
  transition: transform 0.45s ease;
}

.dw-solution-character-launch {
  left: 19%;
  bottom: 36px;
  width: min(260px, 52%);
  transform: rotate(-10deg);
}

.dw-solution-character-custom {
  left: 23%;
  bottom: 22px;
  width: min(255px, 50%);
}

.dw-solution-select-card:hover .dw-solution-character-launch {
  transform: rotate(-8deg) translateY(-10px) scale(1.04);
}

.dw-solution-select-card:hover .dw-solution-character-custom {
  transform: translateY(-10px) scale(1.04);
}

.dw-solution-media>span {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
  padding: 11px 16px;
  color: var(--theme-color-white);
  background: rgba(var(--theme-color-dark-rgb), 0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.dw-solution-info {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 40px 42px;
  border-radius: 0 34px 34px 0;
  background: var(--theme-color-white);
  box-shadow: 0 24px 65px rgba(var(--theme-color-dark-rgb), 0.10);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.08);
}

.dw-solution-info::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 0 0 999px 0;
  background: var(--theme-color-white);
  box-shadow: 18px 18px 0 var(--theme-color-white);
}

.dw-solution-info>span {
  display: block;
  margin-bottom: 18px;
  color: var(--theme-color1);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.dw-solution-info h3 {
  margin: 30px 0 20px;
  color: var(--theme-color-dark);
  font-size: clamp(29px, 2.3vw, 35px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  overflow-wrap: normal;
  word-break: normal;
}

.dw-solution-info p {
  max-width: 310px;
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.68);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 700;
}

.dw-solution-info>a {
  position: absolute;
  top: 38px;
  right: 42px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-color-dark);
  background: var(--theme-color-yellow);
  font-size: 30px;
  box-shadow: 0 18px 42px rgba(145, 190, 212, 0.34);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.dw-solution-info>a:hover {
  color: var(--theme-color-white);
  background: var(--theme-color1);
  transform: rotate(8deg) scale(1.08);
}

@media (max-width: 1199px) {
  .dw-solution-select-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
  }

  .dw-solution-select-heading {
    grid-column: 1;
    grid-row: auto;
    position: relative;
    top: auto;
    text-align: center;
  }

  .dw-solution-select-cta--desktop {
    display: none;
  }

  .dw-solution-select-cta--mobile {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .dw-solution-select-list {
    grid-column: 1;
    grid-row: auto;
  }
}



@media (max-width: 991px) {

  .dw-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0px 0px 48px 0;
}
  .dw-solution-select-card {
    grid-template-columns: 1fr;
  }

  .dw-solution-media {
    border-radius: 30px 30px 0 0;
  }

  .dw-solution-info {
    border-radius: 0 0 30px 30px;
  }

  .dw-solution-info::before {
    display: none;
  }
}

@media (max-width: 768px) {

  .dw-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0px 0px 8px 0;
}

}

@media (max-width: 575px) {
  .dw-solution-select-section {
    padding: 80px 0 90px !important;
  }

  .dw-solution-select-cta {
    margin-top: 0;
  }

  .dw-solution-media,
  .dw-solution-info,
  .dw-solution-select-card {
    min-height: 250px;
  }

  .dw-solution-info {
    padding: 34px 26px 36px;
  }

  .dw-solution-info>a {
    top: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

.ks-testimonial-2-shape-1 {
  height: 240px !important;
}

.ks-testimonial-2-shape-1 {
  bottom: -1px !important;
}

.team-section-two .outer-box:before {
  background-image: url(../../images/shape/home3-team-section.webp) !important;
}

/* Sidebar scrollbar - Firefox */
.menu-box {
  scrollbar-width: thin;
  scrollbar-color: var(--theme-color1) transparent;
}

/* Sidebar scrollbar - Chrome, Edge, Safari */
.menu-box::-webkit-scrollbar {
  width: 8px;
}

.menu-box::-webkit-scrollbar-track {
  background: transparent;
}

.menu-box::-webkit-scrollbar-thumb {
  background-color: var(--theme-color1);
  border-radius: 10px;
}

.menu-box::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-color1);
}

/* Hide Contact Us in the normal desktop header */
.main-header>.container .main-menu .navigation>li.nav-contact-link {
  display: none;
}

/* Show Contact Us inside sticky header */
.main-header .sticky-header .main-menu .navigation>li.nav-contact-link {
  display: list-item;
}

.image-1 img {
  height: 570px !important;
}

.ks-contact-shape-3 img {
  height: 300px !important;
}

.ks-about-3-thumb img {
  height: 500px !important;
}

/* ============================= */
/* DelosWeb Video Thumbnail */
/* ============================= */

.delos-video-thumb {
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
}

.delos-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.delos-video-thumb::after {
  content: "Watch the reality check";
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  color: var(--theme-color-white);
  background: rgba(var(--theme-color-dark-rgb), 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delos-video-thumb img {
  width: 100%;
  display: block;
  border-radius: 28px;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.delos-video-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(0.92) contrast(1.08);
}

/* Play Button */
.delos-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.delos-video-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.28);
  animation: delosPulse 1.8s infinite ease-out;
}

.delos-video-play-icon {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow:
    0 18px 44px rgba(var(--theme-color-dark-rgb), 0.28),
    0 0 0 8px rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.delos-video-play-icon i {
  margin-left: 4px;
}

.delos-video-play-btn:hover .delos-video-play-icon {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: scale(1.08);
}

@keyframes delosPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ============================= */
/* DelosWeb Video Modal */
/* ============================= */

.delos-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.delos-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.delos-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--theme-color1-rgb), 0.28), transparent 36%),
    rgba(var(--theme-color-dark-rgb), 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.delos-video-modal-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  transform: scale(0.92) translateY(20px);
  transition: all 0.35s ease;
}

.delos-video-modal.is-open .delos-video-modal-content {
  transform: scale(1) translateY(0);
}

.delos-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: var(--theme-color-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 120px rgba(var(--theme-color-dark-rgb), 0.55),
    0 0 80px rgba(var(--theme-color1-rgb), 0.28);
}

.delos-video-frame video {
  width: 100%;
  display: block;
  border-radius: 28px;
  background: var(--theme-color-dark);
}

.delos-video-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(var(--theme-color-dark-rgb), 0.28);
  transition: all 0.3s ease;
}

.delos-video-close:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: rotate(90deg);
}

body.delos-video-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
  .delos-video-thumb {
    border-radius: 20px;
  }

  .delos-video-thumb img {
    border-radius: 20px;
  }

  .delos-video-thumb::after {
    left: 16px;
    bottom: 16px;
    font-size: 11px;
    padding: 9px 14px;
  }

  .delos-video-play-btn {
    width: 78px;
    height: 78px;
  }

  .delos-video-play-icon {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }

  .delos-video-modal {
    padding: 16px;
  }

  .delos-video-frame {
    border-radius: 18px;
  }

  .delos-video-frame video {
    border-radius: 18px;
  }

  .delos-video-close {
    top: -14px;
    right: -8px;
    width: 42px;
    height: 42px;
  }
}

/* ============================= */
/* Home Why Choose Section        */
/* ============================= */

.ks-about-3-area {
  position: relative;
  padding: 64px 0 62px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 9%, rgba(var(--theme-color-dark-rgb), 0.07), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(var(--theme-color-dark-rgb), 0.05), transparent 30%),
    linear-gradient(135deg, rgba(var(--theme-color-white-rgb), 1) 0%, rgba(245, 250, 255, 0.92) 100%);
}

.ks-about-3-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, #4285b5 34%, rgba(var(--theme-color1-rgb), 0.08) 34.2%, transparent 35%),
    linear-gradient(155deg, transparent 0 58%, rgba(var(--theme-color1-rgb), 0.055) 58.2%, transparent 59%);
  opacity: 0.75;
}

.ks-about-3-area .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.ks-about-3-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  column-gap: clamp(26px, 3vw, 48px);
  row-gap: 24px;
  align-items: start;
}

.ks-about-3-wrap .about-content {
  position: relative !important;
  right: auto !important;
  bottom: auto !important;
  order: 2;
  grid-column: 2;
  grid-row: 1;
  max-width: none !important;
  margin: 0 !important;
  padding: 4px 0 0 !important;
  z-index: 3;
}

.ks-about-3-wrap .about-content .ks-section-title-wrap {
  position: relative;
  margin: 0 0 24px !important;
  padding-right: clamp(86px, 9vw, 140px);
}

.ks-about-3-wrap .about-content .ks-section-subtitle {
  margin-bottom: 14px;
  color: var(--theme-color1);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ks-about-3-wrap .about-content .ks-section-subtitle i {
  color: var(--theme-color1);
}

.dw-choose-title {
  margin-bottom: 18px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.055em;

}

.dw-choose-title span {
  display: block;
  margin-right: 0;
  color: var(--theme-color1);
}

.dw-choose-intro {
  max-width: 390px;
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.82);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 600;
}

.dw-choose-rocket {
  position: absolute;
  right: -28px;
  top: -16px;
  width: clamp(138px, 15vw, 225px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(var(--theme-color-dark-rgb), 0.16));
  animation: dwChooseRocketFloat 5.5s ease-in-out infinite;
}

.ks-about-3-wrap .about-content>.row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.ks-about-3-wrap .about-content .why-chose-box {
  height: 100%;
}

.ks-about-3-wrap .about-content .why-chose-box .inner-box {
  height: 100%;
  min-height: 0;
  padding: 22px 22px 21px;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
  border-radius: 24px;
  background: rgba(var(--theme-color-white-rgb), 0.93);
  box-shadow: 0 24px 58px rgba(var(--theme-color-dark-rgb), 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ks-about-3-wrap .about-content .why-chose-box .inner-box:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--theme-color1-rgb), 0.32);
  background: rgba(var(--theme-color-white-rgb), 0.98);
  box-shadow: 0 34px 76px rgba(var(--theme-color-dark-rgb), 0.15);
}

.ks-about-3-wrap .about-content .why-chose-box .inner-box:hover .title,
.ks-about-3-wrap .about-content .why-chose-box .inner-box:hover .text {
  color: inherit;
}

.ks-about-3-wrap .about-content .why-chose-box .icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%);
  box-shadow: 0 18px 38px rgba(var(--theme-color1-rgb), 0.26);
}

.ks-about-3-wrap .about-content .why-chose-box .icon svg {
  width: 29px;
  height: 29px;
  filter: brightness(0) invert(1);
}

.ks-about-3-wrap .about-content .why-chose-box .title {
  margin-bottom: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--theme-color-dark-rgb), 0.10);
  color: var(--theme-color-dark);
  font-size: 18px;
  line-height: 1.25;

  letter-spacing: -0.03em;
}

.ks-about-3-wrap .about-content .why-chose-box .text {
  color: rgba(var(--theme-color-dark-rgb), 0.80);
  font-size: 13.5px;
  line-height: 1.48;
  font-weight: 600;
}

.dw-choose-card-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(var(--theme-color-dark-rgb), 0.09);
}

.dw-choose-card-list li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 24px;
  color: var(--theme-color-dark);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.dw-choose-card-list li:last-child {
  margin-bottom: 0;
}

.dw-choose-card-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: var(--theme-color1);
  font-family: var(--fontawesome);
  font-size: 8px;
  font-weight: 900;
}

.ks-about-3-thumb.delos-video-thumb {
  order: 1;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  display: block;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.28);
  border-radius: 28px;
  background: var(--theme-color-dark);
  box-shadow: 0 30px 68px rgba(var(--theme-color-dark-rgb), 0.18);
}

.ks-about-3-thumb.delos-video-thumb>img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  width: 100%;
  height: clamp(300px, 30vw, 430px) !important;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.delos-video-thumb::before {
  background:
    linear-gradient(180deg, rgba(var(--theme-color-dark-rgb), 0.02) 0%, rgba(var(--theme-color-dark-rgb), 0.24) 100%);
}

.delos-video-thumb::after {
  content: "Watch the reality check";
  left: 26px;
  bottom: 26px;
  background: rgba(var(--theme-color-dark-rgb), 0.82);
}

.ks-about-3-area .delos-video-play-icon {
  width: 78px;
  height: 78px;
}

.dw-choose-video-cta {
  order: 3;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: calc(clamp(300px, 30vw, 430px) + 24px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 56px 24px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.14);
  border-radius: 26px;
  background: rgba(var(--theme-color-white-rgb), 0.94);
  box-shadow: 0 22px 54px rgba(var(--theme-color-dark-rgb), 0.10);
}

.dw-choose-video-cta-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 62px;
  border-radius: 18px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%);
  box-shadow: 0 16px 36px rgba(var(--theme-color1-rgb), 0.24);
  font-size: 28px;
}

.dw-choose-video-cta h3 {
  margin: 0 0 6px;
  color: var(--theme-color-dark);
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.dw-choose-video-cta p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.78);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 600;
}

.dw-choose-video-cta-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 18px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%);
  box-shadow: 0 18px 38px rgba(var(--theme-color1-rgb), 0.22);
  font-size: 13px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.dw-choose-video-cta-btn i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-color1);
  background: var(--theme-color-white);
  transition: transform 0.25s ease;
}

.dw-choose-video-cta-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(var(--theme-color1-rgb), 0.30);
}

.dw-choose-video-cta-btn:hover i {
  transform: translateX(4px);
}

.dw-choose-proof-strip {
  order: 4;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color1) 100%);
  box-shadow: 0 18px 44px rgba(var(--theme-color-dark-rgb), 0.18);
}

.dw-choose-proof-strip span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  color: var(--theme-color-white);
  border-right: 1px solid rgba(var(--theme-color-white-rgb), 0.18);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.dw-choose-proof-strip span:last-child {
  border-right: 0;
}

.dw-choose-proof-strip i {
  color: var(--theme-color-white);
  font-size: 18px;
}

@keyframes dwChooseRocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-13px) rotate(1deg);
  }
}

@media (max-width: 768px) {
  .ks-about-3-wrap {
    grid-template-columns: 1fr;
  }

  .ks-about-3-wrap .about-content {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .ks-about-3-thumb.delos-video-thumb {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .dw-choose-video-cta {
    order: 3;
    grid-row: auto;
    margin-top: 0;
  }

  .dw-choose-proof-strip {
    order: 4;
    grid-row: auto;
  }

  .ks-about-3-wrap .about-content .ks-section-title-wrap {
    max-width: 780px;
    margin: 0 auto 32px !important;
    padding-right: 0;
    text-align: center;
  }

  .dw-choose-title br {
    display: none;
  }

  .dw-choose-title span {
    display: inline;
  }

  .dw-choose-intro {
    max-width: 680px;
    margin-inline: auto;
  }

  .ks-about-3-thumb.delos-video-thumb > img {
    height: auto !important;
    min-height: 0;
  }
}

.ks-about-3-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, #4285b5 27%, rgba(var(--theme-color1-rgb), 0.08) 27.2%, transparent 35%),
    linear-gradient(155deg, transparent 0 58%, rgba(var(--theme-color1-rgb), 0.055) 58.2%, transparent 59%);
  opacity: 0.75;
}

@media (max-width: 767px) {
  .ks-about-3-wrap {
    grid-template-columns: 1fr;
  }

  .ks-about-3-wrap .about-content {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .ks-about-3-thumb.delos-video-thumb {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .dw-choose-video-cta {
    order: 3;
    grid-row: auto;
    margin-top: 0;
  }

  .dw-choose-proof-strip {
    order: 4;
    grid-row: auto;
  }

  .ks-about-3-wrap .about-content .ks-section-title-wrap {
    max-width: 780px;
    margin: 0 auto 32px !important;
    padding-right: 0;
    text-align: center;
  }

  .dw-choose-title br {
    display: none;
  }

  .dw-choose-title span {
    display: inline;
  }

  .dw-choose-intro {
    max-width: 680px;
    margin-inline: auto;
  }

  .ks-about-3-thumb.delos-video-thumb > img {
    height: auto !important;
    min-height: 0;
  }
}

.ks-about-3-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, #4285b5 13%, rgba(var(--theme-color1-rgb), 0.08) 0%, transparent 35%),
    linear-gradient(155deg, transparent 0 58%, rgba(var(--theme-color1-rgb), 0.055) 58.2%, transparent 59%);
  opacity: 0.75;
}

@media (max-width: 710px) {
  .ks-about-3-wrap {
    grid-template-columns: 1fr;
  }

  .ks-about-3-wrap .about-content {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .ks-about-3-thumb.delos-video-thumb {
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .dw-choose-video-cta {
    order: 3;
    grid-row: auto;
    margin-top: 0;
  }

  .dw-choose-proof-strip {
    order: 4;
    grid-row: auto;
  }

  .ks-about-3-wrap .about-content .ks-section-title-wrap {
    max-width: 780px;
    margin: 0 auto 32px !important;
    padding-right: 0;
    text-align: center;
  }

  .dw-choose-title br {
    display: none;
  }

  .dw-choose-title span {
    display: inline;
  }

  .dw-choose-intro {
    max-width: 680px;
    margin-inline: auto;
  }

  .ks-about-3-thumb.delos-video-thumb > img {
    height: auto !important;
    min-height: 0;
  }
}

.ks-about-3-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, #4285b5 8.5%, rgba(var(--theme-color1-rgb), 0.08) 0%, transparent 35%),
    linear-gradient(155deg, transparent 0 58%, rgba(var(--theme-color1-rgb), 0.055) 58.2%, transparent 59%);
  opacity: 0.75;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .dw-choose-rocket {
    display: none;
  }
}


@media (max-width: 991px) {
  .ks-about-3-area {
    padding: 76px 0 70px !important;
  }

  .ks-about-3-wrap .about-content .ks-section-title-wrap {
    padding-right: 0;
  }

  .dw-choose-video-cta {
    grid-template-columns: auto 1fr;
  }

  .dw-choose-video-cta-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .dw-choose-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
  }

  .dw-choose-proof-strip span:nth-child(2) {
    border-right: 0;
  }

  .dw-choose-proof-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.18);
  }
}

@media (max-width: 575px) {
  .ks-about-3-wrap .about-content .why-chose-box .inner-box {
    min-height: auto;
    padding: 26px 22px;
  }

  .dw-choose-video-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    text-align: center;
  }

  .dw-choose-video-cta-icon {
    margin: 0 auto;
  }

  .dw-choose-proof-strip {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .dw-choose-proof-strip span {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--theme-color-white-rgb), 0.18);
  }

  .dw-choose-proof-strip span:last-child {
    border-bottom: 0;
  }

  .ks-about-3-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, #4285b5 0%, rgba(var(--theme-color1-rgb), 0.08) 0%, transparent 35%),
    linear-gradient(155deg, transparent 0 58%, rgba(var(--theme-color1-rgb), 0.055) 58.2%, transparent 59%);
  opacity: 0.75;
}
}

/* ============================= */
.process-section-two {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--theme-color3) 0%, #0630a1 45%, #001a78 100%);
  z-index: 10;
}

.process-section-two::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 22%;
  width: 120px;
  height: 140%;
  background: linear-gradient(180deg,
      rgba(60, 149, 255, 0) 0%,
      rgba(60, 149, 255, 0.32) 50%,
      rgba(60, 149, 255, 0) 100%);
  transform: rotate(38deg);
  z-index: -1;
}

.process-section-two::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 20%;
  width: 120px;
  height: 140%;
  background: linear-gradient(180deg,
      rgba(33, 115, 255, 0) 0%,
      rgba(33, 115, 255, 0.22) 50%,
      rgba(33, 115, 255, 0) 100%);
  transform: rotate(-38deg);
  z-index: -1;
}

.process-section-two .sec-title .sub-title,
.process-section-two .sec-title h2 {
  color: var(--theme-color-white);
}

.process-fan-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.process-fan-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-fan-item {
  position: relative;
  padding: 24px 26px;
  border-radius: 22px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: all 350ms ease;
  overflow: hidden;
}

.process-fan-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 0;
  border-radius: 20px;
  background: var(--theme-color5);
  transition: all 350ms ease;
}

.process-fan-item:hover,
.process-fan-item.active {
  background: rgba(8, 20, 100, 0.92);
  transform: translateX(16px);
  border-color: rgba(95, 168, 223, 0.65);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.process-fan-item.active::before {
  height: calc(100% - 44px);
}

.process-fan-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.process-fan-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: var(--theme-color5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-fan-icon i {
  font-size: 24px;
  color: var(--theme-color-white);
}

.process-fan-heading h5 {
  color: var(--theme-color-white);
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.process-fan-heading span {
  margin-left: auto;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.14);
}

.process-fan-item p {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-left: 76px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  overflow: hidden;
  transition: all 350ms ease;
}

.process-fan-item.active p {
  max-height: 180px;
  opacity: 1;
  margin-top: 14px;
}

.process-fan-image-box {
  position: relative;
}

.process-image-shape {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 78%;
  height: 78%;
  border-radius: 42px;
  background: rgba(95, 168, 223, 0.16);
  z-index: 0;
}

.process-image-card {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 30px 30px 30px 110px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  transform: rotate(-1.2deg);
}

.process-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 22px 22px 22px 95px;
  transition: opacity 250ms ease, transform 350ms ease;
}

.process-image-card:hover img {
  transform: scale(1.025);
}

.process-image-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-radius: 50px;
  background: rgba(3, 27, 102, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.process-image-badge span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme-color5);
  color: var(--theme-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-image-badge strong {
  color: var(--theme-color-white);
  font-size: 15px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .process-fan-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-fan-item:hover,
  .process-fan-item.active {
    transform: translateX(0);
  }

  .process-image-card {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .process-section-two {
    padding: 80px 0;
  }

  .process-fan-item {
    padding: 22px 20px;
  }

  .process-fan-heading {
    gap: 14px;
  }

  .process-fan-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .process-fan-heading h5 {
    font-size: 18px;
  }

  .process-fan-heading span {
    font-size: 30px;
  }

  .process-fan-item p {
    padding-left: 0;
  }

  .process-image-card {
    border-radius: 24px 24px 24px 70px;
  }

  .process-image-card img {
    border-radius: 18px 18px 18px 60px;
  }
}

/* ============================= */
/* ================================
   DelosWeb New Home Sections
================================ */

:root {
  --dw-navy: var(--theme-color3);
  --dw-blue: #0630a1;
  --dw-deep-blue: #001a78;
  --dw-light-blue: var(--theme-color5);
  --dw-white: var(--theme-color-white);
  --dw-soft-bg: var(--theme-color-light);
  --dw-text: #071338;
  --dw-muted: var(--text-color);
}

/* Shared Heading */
.dw-section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
}

.dw-subtitle {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--dw-light-blue);
  margin-bottom: 15px;
}

.dw-section-heading h2 {
  font-size: var(--h2-font-size);
  line-height: 1.12;
  color: var(--dw-text);
  margin-bottom: 18px;
}

.dw-section-heading p,
.dw-problems-content p {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  color: var(--dw-muted);
  margin-bottom: 0;
}

/* Primary Button */
.dw-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dw-blue), var(--dw-light-blue));
  color: var(--theme-color-white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(6, 48, 161, 0.25);
  transition: all 300ms ease;
}

.dw-primary-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(6, 48, 161, 0.35);
}

/* ================================
   Who We Build For
================================ */

.dw-industries-section {
  position: relative;
  padding: 115px 0;
  background: var(--theme-color-white);
  overflow: hidden;
}

.dw-industries-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(95, 168, 223, 0.12);
}

.dw-industries-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dw-industry-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 24px;
  background: var(--theme-color-white);
  border: 1px solid rgba(3, 27, 102, 0.1);
  box-shadow: 0 18px 45px rgba(3, 27, 102, 0.08);
  transition: all 300ms ease;
  overflow: hidden;
}

.dw-industry-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(95, 168, 223, 0.12);
  transition: all 300ms ease;
}

.dw-industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 168, 223, 0.45);
  box-shadow: 0 25px 60px rgba(3, 27, 102, 0.13);
}

.dw-industry-card:hover::after {
  transform: scale(1.25);
}

.dw-industry-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dw-navy), var(--dw-light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.dw-industry-icon i {
  color: var(--theme-color-white);
  font-size: 27px;
}

.dw-industry-card h4 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.25;
  color: var(--dw-text);
  margin-bottom: 12px;
}

.dw-industry-card p {
  position: relative;
  z-index: 1;
  color: var(--dw-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================================
   Improve Problems We Solve Spacing
================================ */

.dw-solve-section {
  padding: 110px 0 120px;
}

/* Header spacing */
.dw-solve-heading {
  max-width: 1150px;
  margin: 0 auto 70px;
}

.dw-solve-heading .dw-about-metrics-subtitle {
  display: block;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
}


.dw-solve-heading p {
  max-width: 1050px;
  margin: 0 auto;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: 0;
  word-spacing: 2px;
}

/* Main layout spacing */
.dw-solve-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* Visual side */
.dw-solve-image-card {
  min-height: 430px;
}

.dw-solve-image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

/* Mini cards spacing */
.dw-solve-mini-card {
  padding: 24px 28px;
  min-width: 220px;
}

.dw-solve-mini-card strong {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 2px;
  margin-bottom: 10px;
}

.dw-solve-mini-card span {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  word-spacing: 2px;
}

/* Right cards */
.dw-solve-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.dw-solve-item {
  padding: 34px 30px;
  min-height: 230px;
}

.dw-solve-content span {
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.dw-solve-content h5 {
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 2px;
  margin-bottom: 16px;
}

.dw-solve-content p {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  letter-spacing: 0;
  word-spacing: 2px;
}

/* Number */
.dw-solve-number {
  right: 24px;
  bottom: 22px;
  font-size: 58px;
  opacity: 0.55;
}

/* Button spacing */
.dw-solve-bottom {
  margin-top: 55px;
}

.dw-solve-btn {
  padding: 18px 34px;
  min-width: 190px;
  font-size: 16px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-solve-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 767px) {
  .dw-solve-section {
    padding: 80px 0 90px;
  }

  .dw-solve-heading {
    margin-bottom: 45px;
  }

  .dw-solve-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dw-solve-item {
    min-height: auto;
    padding: 28px 24px;
  }

  .dw-solve-content h5 {
    font-size: 20px;
  }

  .dw-solve-image-card img {
    height: 320px;
  }

  .dw-solve-image-card {
    min-height: 320px;
  }
}

/* ================================
   Website Promise
================================ */

.dw-promise-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--theme-color3) 0%, #0630a1 45%, #001a78 100%);
  overflow: hidden;
}

.dw-promise-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 15%;
  width: 130px;
  height: 150%;
  transform: rotate(38deg);
  background: linear-gradient(180deg,
      rgba(95, 168, 223, 0) 0%,
      rgba(95, 168, 223, 0.25) 50%,
      rgba(95, 168, 223, 0) 100%);
}

.dw-promise-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(95, 168, 223, 0.13);
}

.dw-promise-section .dw-section-heading {
  position: relative;
  z-index: 1;
}

.dw-promise-section .dw-section-heading h2,
.dw-promise-section .dw-section-heading p {
  color: var(--theme-color-white);
}

.dw-promise-section .dw-section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.dw-promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dw-promise-card {
  position: relative;
  min-height: 245px;
  padding: 34px 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  transition: all 300ms ease;
  overflow: hidden;
}

.dw-promise-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(95, 168, 223, 0.16);
  transition: all 300ms ease;
}

.dw-promise-card:hover {
  transform: translateY(-8px);
  background: rgba(10, 20, 110, 0.9);
  border-color: rgba(95, 168, 223, 0.55);
}

.dw-promise-card:hover::before {
  transform: scale(1.2);
}

.dw-promise-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--dw-light-blue);
  color: var(--theme-color-white);
  font-weight: 800;
  margin-bottom: 24px;
}

.dw-promise-card h4 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.25;
  color: var(--theme-color-white);
  margin-bottom: 13px;
}

.dw-promise-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .dw-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dw-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {

  .dw-problems-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 767px) {

  .dw-industries-section,
  .dw-problems-section,
  .dw-promise-section {
    padding: 80px 0;
  }

  .dw-industries-grid,
  .dw-promise-grid {
    grid-template-columns: 1fr;
  }

  .dw-problem-row {
    grid-template-columns: 1fr;
  }

}

/* ============================= */

.dw-solve-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #f3f7ff 0%, var(--theme-color-white) 100%);
  overflow: hidden;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -260px;
    bottom: -300px;
    border-radius: 50%;
    background: rgba(61, 142, 216, 0.13);
    z-index: -1;
  }

  &::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: rgba(6, 35, 124, 0.08);
    z-index: -1;
  }

  .dw-solve-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
  }

  .dw-solve-visual {
    position: relative;
  }

  .dw-solve-image-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(6, 19, 66, 0.18);

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(6, 19, 66, 0.05) 0%,
          rgba(6, 19, 66, 0.78) 100%);
      z-index: 1;
    }

    img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      display: block;
    }
  }

  .dw-solve-image-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);

    .icon {
      width: 58px;
      height: 58px;
      flex: 0 0 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #06237c 0%, #3d8ed8 100%);
      color: var(--theme-color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    strong {
      display: block;
      color: #061342;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.2;
    }

    small {
      display: block;
      margin-top: 5px;
      color: var(--text-color2);
      font-size: 15px;
      line-height: 1.45;
    }
  }

  .dw-solve-mini-card {
    position: absolute;
    z-index: 3;
    max-width: 230px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--theme-color-white);
    box-shadow: 0 20px 55px rgba(6, 19, 66, 0.16);

    strong {
      display: block;
      margin-bottom: 5px;
      color: #061342;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.2;
    }

    span {
      display: block;
      color: var(--text-color2);
      font-size: 14px;
      line-height: 1.45;
    }
  }

  .dw-solve-mini-card-one {
    top: 45px;
    right: -38px;
  }

  .dw-solve-mini-card-two {
    left: -34px;
    bottom: 120px;
  }

  .dw-solve-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .dw-solve-item {
    position: relative;
    min-height: 260px;
    padding: 34px 30px;
    border-radius: 28px;
    background: var(--theme-color-white);
    border: 1px solid rgba(6, 19, 66, 0.08);
    box-shadow: 0 22px 65px rgba(6, 19, 66, 0.08);
    overflow: hidden;
    transition: all 300ms ease;

    &::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: linear-gradient(90deg, #06237c 0%, #3d8ed8 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: all 300ms ease;
    }

    &:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(6, 19, 66, 0.14);

      &::before {
        transform: scaleX(1);
      }

      .dw-solve-number {
        color: rgba(61, 142, 216, 0.18);
      }
    }
  }

  .dw-solve-number {
    position: absolute;
    right: 24px;
    bottom: 14px;
    color: rgba(6, 19, 66, 0.06);
    font-size: 76px;
    line-height: 1;
    font-weight: 900;
    transition: all 300ms ease;
  }

  .dw-solve-content {
    position: relative;
    z-index: 2;

    span {
      display: inline-block;
      margin-bottom: 16px;
      padding: 8px 14px;
      border-radius: 30px;
      background: #eef5ff;
      color: #06237c;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    h5 {
      margin-bottom: 14px;
      color: #061342;
      font-size: 25px;
      line-height: 1.22;
      font-weight: 800;
    }

    p {
      margin-bottom: 0;
      color: var(--text-color2);
      font-size: var(--body-font-size);
      line-height: var(--body-line-height-small);
    }
  }

  .dw-solve-bottom {
    margin-top: 55px;
    text-align: center;
  }

  .dw-solve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 38px;
    border-radius: 60px;
    background: linear-gradient(135deg, #06237c 0%, #3d8ed8 100%);
    color: var(--theme-color-white);
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(61, 142, 216, 0.36);
    transition: all 300ms ease;

    &:hover {
      color: var(--theme-color-white);
      transform: translateY(-3px);
      box-shadow: 0 24px 55px rgba(61, 142, 216, 0.46);
    }
  }
}

@media only screen and (max-width: 1199px) {
  .dw-solve-section {
    .dw-solve-wrapper {
      gap: 45px;
    }

    .dw-solve-image-card {
      img {
        height: 500px;
      }
    }

    .dw-solve-mini-card-one {
      right: 18px;
    }

    .dw-solve-mini-card-two {
      left: 18px;
    }
  }
}

@media only screen and (max-width: 991px) {
  .dw-solve-section {
    padding: 90px 0;

    .dw-solve-wrapper {
      grid-template-columns: 1fr;
    }

    .dw-solve-visual {
      max-width: 650px;
      margin: 0 auto;
    }

    .dw-solve-list {
      max-width: 760px;
      margin: 0 auto;
    }
  }
}

@media only screen and (max-width: 767px) {
  .dw-solve-section {
    .dw-solve-list {
      grid-template-columns: 1fr;
    }

    .dw-solve-image-card {
      border-radius: 26px;

      img {
        height: 420px;
      }
    }

    .dw-solve-mini-card {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      bottom: auto;
      max-width: 100%;
      margin-top: 16px;
    }

    .dw-solve-image-overlay {
      left: 18px;
      right: 18px;
      bottom: 18px;
      padding: 18px;
    }
  }
}

@media only screen and (max-width: 575px) {
  .dw-solve-section {
    padding: 75px 0;

    .dw-solve-image-card {
      img {
        height: 360px;
      }
    }

    .dw-solve-image-overlay {
      align-items: flex-start;

      .icon {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
      }

      strong {
        font-size: 18px;
      }

      small {
        font-size: 14px;
      }
    }

    .dw-solve-item {
      min-height: auto;
      padding: 30px 24px;
    }

    .dw-solve-content {
      h5 {
        font-size: 22px;
      }
    }
  }
}

/* Card titles smaller only for this section */
.dw-solve-section {
  .dw-solve-content {
    h5 {
      font-size: 15px !important;
      line-height: 1.55 !important;
      letter-spacing: 0;
      margin-bottom: 10px;
    }

    p {
      font-size: var(--body-font-size);
      line-height: var(--body-line-height-small);
    }
  }

  .dw-solve-item {
    min-height: 190px;
    padding: 24px 24px;
  }
}

.dw-footer-bridge-section {
  position: relative;
  z-index: 5;
  padding: 90px 0 0;
  background: #f3f7ff;
  overflow: visible;

  .dw-footer-bridge-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 45px;
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, #061342 0%, #06237c 48%, #3d8ed8 100%);
    box-shadow: 0 35px 90px rgba(6, 19, 66, 0.22);
    overflow: hidden;
    margin-bottom: -95px;

    &::before {
      content: "";
      position: absolute;
      top: -160px;
      right: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
    }

    &::after {
      content: "";
      position: absolute;
      left: 42%;
      top: -80px;
      width: 90px;
      height: 150%;
      background: rgba(255, 255, 255, 0.08);
      transform: rotate(28deg);
    }
  }

  .dw-footer-bridge-image {
    position: relative;
    z-index: 2;
    border-radius: 26px;
    overflow: hidden;
    min-height: 330px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);

    img {
      width: 100%;
      height: 330px;
      object-fit: cover;
      display: block;
    }
  }

  .dw-footer-bridge-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;

    .dw-footer-bridge-subtitle {
      margin-bottom: 12px;
      color: #9ed0ff;
      font-size: 13px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    p {
      max-width: 610px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.78);
      font-size: var(--body-font-size);
      line-height: var(--body-line-height);
    }
  }

  .dw-footer-bridge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 26px;
  }

  .dw-footer-bridge-item {
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);

    span {
      display: block;
      margin-bottom: 8px;
      color: #9ed0ff;
      font-size: 12px;
      font-weight: 800;
    }

    strong {
      display: block;
      color: var(--theme-color-white);
      font-size: 14px;
      line-height: 1.3;
      font-weight: 700;
    }
  }

  .dw-footer-bridge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 50px;
    background: var(--theme-color-white);
    color: #06237c;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 300ms ease;

    &:hover {
      color: #06237c;
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }
  }
}

.dw-footer-connected {
  padding-top: 180px !important;
}

@media only screen and (max-width: 991px) {
  .dw-footer-bridge-section {
    .dw-footer-bridge-card {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: -80px;
    }

    .dw-footer-bridge-content {
      padding-right: 0;
      text-align: center;

      p {
        margin-left: auto;
        margin-right: auto;
      }
    }

    .dw-footer-bridge-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .dw-footer-connected {
    padding-top: 160px !important;
  }
}

@media only screen and (max-width: 575px) {
  .dw-footer-bridge-section {
    padding-top: 70px;

    .dw-footer-bridge-card {
      padding: 22px;
      border-radius: 26px;
    }

    .dw-footer-bridge-image {
      min-height: 240px;
      border-radius: 20px;

      img {
        height: 240px;
      }
    }

    .dw-footer-bridge-content {
      p {
        font-size: var(--body-font-size);
      }
    }

    .dw-footer-bridge-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* ============================= */
/* DelosWeb Solve Video Button */
/* ============================= */

.dw-solve-video-card {
  position: absolute;
  z-index: 8;
  border: 0;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(var(--theme-color-dark-rgb), 0.88);
  color: var(--theme-color-white);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.45);
  box-shadow:
    0 22px 55px rgba(var(--theme-color-dark-rgb), 0.24),
    0 0 38px rgba(var(--theme-color1-rgb), 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.dw-solve-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 45%, rgba(var(--theme-color1-rgb), 0.42), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 45%);
  opacity: 0.95;
}

.dw-solve-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-color1-rgb), 0.85);
  box-shadow:
    0 28px 70px rgba(var(--theme-color-dark-rgb), 0.32),
    0 0 55px rgba(var(--theme-color1-rgb), 0.32);
}

.dw-solve-video-icon {
  position: relative;
  z-index: 2;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow:
    0 14px 35px rgba(var(--theme-color-dark-rgb), 0.28),
    0 0 0 7px rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.dw-solve-video-card:hover .dw-solve-video-icon {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: scale(1.07);
}

.dw-solve-video-pulse {
  position: absolute;
  left: 28px;
  top: 50%;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.35);
  transform: translateY(-50%);
  animation: dwSolveVideoPulse 1.8s ease-out infinite;
  pointer-events: none;
}

.dw-solve-video-text {
  position: relative;
  z-index: 2;
  display: block;
}

.dw-solve-video-text strong {
  display: block;
  color: var(--theme-color-white);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dw-solve-video-text small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

@keyframes dwSolveVideoPulse {
  0% {
    transform: translateY(-50%) scale(0.82);
    opacity: 0.75;
  }

  100% {
    transform: translateY(-50%) scale(1.65);
    opacity: 0;
  }
}

/* Optional: only use this if your current mini card position is not good */
/*
.dw-solve-video-card.dw-solve-mini-card-two {
  right: 20px;
  bottom: 36px;
  width: 245px;
  min-height: 96px;
  border-radius: 22px;
  padding: 20px;
}
*/

/* ============================= */
/* DelosWeb Cartoon Video Modal */
/* ============================= */

.dw-cartoon-video-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.dw-cartoon-video-modal.is-open {
  display: flex !important;
}

.dw-cartoon-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--theme-color1-rgb), 0.34), transparent 38%),
    rgba(var(--theme-color-dark-rgb), 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dw-cartoon-video-dialog {
  position: relative;
  z-index: 2;
  width: min(1040px, 94vw);
  aspect-ratio: 16 / 9;
  background: var(--theme-color-dark);
  border-radius: 28px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 45px 130px rgba(var(--theme-color-dark-rgb), 0.68),
    0 0 90px rgba(var(--theme-color1-rgb), 0.38);
  animation: dwCartoonVideoPop 0.35s ease forwards;
}

.dw-cartoon-video-player {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain;
  background: var(--theme-color-dark);
  border-radius: 28px;
}

.dw-cartoon-video-close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(var(--theme-color-dark-rgb), 0.3);
  transition: all 0.3s ease;
}

.dw-cartoon-video-close:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: rotate(90deg);
}

body.dw-cartoon-video-is-open {
  overflow: hidden;
}

@keyframes dwCartoonVideoPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 767px) {
  .dw-solve-video-card {
    gap: 10px;
  }

  .dw-solve-video-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .dw-solve-video-text strong {
    font-size: 15px;
  }

  .dw-solve-video-text small {
    font-size: 11px;
  }

  .dw-cartoon-video-modal {
    padding: 18px;
  }

  .dw-cartoon-video-dialog {
    width: 96vw;
    border-radius: 18px;
  }

  .dw-cartoon-video-player {
    border-radius: 18px;
  }

  .dw-cartoon-video-close {
    top: -16px;
    right: -8px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}


/* ============================= */
/* DelosWeb FAQ Section */
/* ============================= */

.dw-faq-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.dw-faq-section::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.10);
  border-radius: 36px;
  pointer-events: none;
}

.dw-faq-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: flex-start;
}

.dw-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--theme-color1);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-faq-content h2 {
  margin: 0 0 22px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.04;

  letter-spacing: -0.05em;
}

.dw-faq-content p {
  max-width: 520px;
  margin: 0 0 34px;
  color: var(--text-color3);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 500;
}

.dw-faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--theme-color-dark);
  color: var(--theme-color-white);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(var(--theme-color-dark-rgb), 0.16);
  transition: all 0.3s ease;
}

.dw-faq-btn span {
  display: inline-flex;
  color: currentColor;
}

.dw-faq-btn:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(var(--theme-color1-rgb), 0.26);
}

.dw-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dw-faq-item {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
  box-shadow: 0 18px 50px rgba(var(--theme-color-dark-rgb), 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.dw-faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--theme-color1-rgb), 0.10), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dw-faq-item.active {
  border-color: rgba(var(--theme-color1-rgb), 0.32);
  box-shadow:
    0 24px 70px rgba(var(--theme-color-dark-rgb), 0.10),
    0 0 38px rgba(var(--theme-color1-rgb), 0.08);
}

.dw-faq-item.active::before {
  opacity: 1;
}

/* .dw-diy-pro-hero-grid */

.dw-faq-question {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 82px;
  padding: 24px 30px;
  border: 0;
  background: transparent;
  color: var(--theme-color-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
}

.dw-faq-question span {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.dw-faq-question i {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f8fb;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.18);
  transition: all 0.3s ease;
}

.dw-faq-question i::before,
.dw-faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-color-dark);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.dw-faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dw-faq-item.active .dw-faq-question i {
  background: var(--theme-color1);
  border-color: var(--theme-color1);
}

.dw-faq-item.active .dw-faq-question i::before,
.dw-faq-item.active .dw-faq-question i::after {
  background: var(--theme-color-white);
}

.dw-faq-item.active .dw-faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.dw-faq-answer {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.dw-faq-answer p {
  margin: 0;
  padding: 0 30px 28px;
  color: var(--text-color3);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .dw-faq-section {
    padding: 90px 0;
  }

  .dw-faq-section::before {
    inset: 20px;
    border-radius: 26px;
  }

  .dw-faq-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .dw-faq-content p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .dw-faq-section {
    padding: 75px 0;
  }

  .dw-faq-question {
    min-height: 72px;
    padding: 20px;
    gap: 16px;
  }

  .dw-faq-question span {
    font-size: 17px;
  }

  .dw-faq-question i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .dw-faq-answer p {
    padding: 0 20px 24px;

  }
}

/* Static desktop dimensions for the testimonial video cards. */
@media (min-width: 992px) {
  .ks-testimonial-2-area .ks-testi-panel:not(.dw-testimonial-story-panel) {
    height: 295px !important;
    max-height: none !important;
  }
}

.ks-testimonial-2-item,
.ks-testimonial-2-item-wrap {
  height: 100% !important;
}

.testimonial-2::before {
  background-image: url(../../images/testimonial/floor-contractor-los-angeles-client-review-thumbnail.webp);
  background-size: cover;
}

.testimonial-4::before {
  background-image: url(../../images/testimonial/windows-doors-los-angeles-client-review-thumbnail.webp);
  background-size: cover;
}

.testimonial-3::before {
  background-image: url(../../images/testimonial/pools-los-angeles-real-client-testimonial-thumbnail.webp);
  background-size: cover;
}

.testimonial-5::before {
  background-image: url(../../images/testimonial/plumbing-expert-la-real-client-review-thumbnail.webp);
  background-size: cover;
}

.testimonial-1::before {
  background-image: url(../../images/testimonial/electrician-pro-la-real-client-review-thumbnail.webp);
  background-size: cover;
}

/* ============================= */
/* DelosWeb Testimonial Video Cards */
/* ============================= */

.dw-video-testi-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(var(--theme-color-dark-rgb), 0.16);
}








/* Play Button */
.dw-testi-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dw-testi-play-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.36);
  animation: dwTestiPulse 1.8s ease-out infinite;
}

.dw-testi-play-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow:
    0 18px 44px rgba(var(--theme-color-dark-rgb), 0.32),
    0 0 0 8px rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.dw-testi-play-btn:hover .dw-testi-play-icon {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: scale(1.08);
}

@keyframes dwTestiPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ============================= */
/* Home Testimonial Story Panel  */
/* ============================= */

.ks-testimonial-2-area {
  background-color: var(--theme-color-soft-blue-bg) !important;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(var(--theme-color1-rgb), 0.12) 0, rgba(var(--theme-color1-rgb), 0.045) 24%, transparent 48%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.38) 28%, transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(var(--theme-color1-rgb), 0.025) 100%) !important;
  overflow: visible !important;
}

@media (min-width: 992px) {
  .ks-testimonial-2-area {
    z-index: 2;
    overflow: visible !important;
  }

  .ks-testimonial-2-area .row {
    align-items: stretch;
  }

  .dw-testimonial-story-column {
    position: relative;
    align-self: stretch;
  }
}

.dw-testimonial-story-panel {
  position: relative !important;
  top: auto !important;
  z-index: 3;
  align-self: flex-start;
  height: 610px !important;
  min-height: 610px;
  padding: 0 !important;
  overflow: visible !important;
}



@media (max-width: 1372px) {



    .dw-testimonial-rocket-wrap img {
        top: 125% !important;
        width: 240px !important;
        max-width: 240px !important;
        height: auto !important;

        margin: 59px 33px 0 0 !important;
    }

}

@media (max-width: 1199px) {



    .dw-testimonial-rocket-wrap img {
        top: 125% !important;
        width: 240px !important;
        max-width: 240px !important;
        height: auto !important;

        margin: 75px 33px 0 0 !important;
    }

}

@media (min-width: 992px) {
  .pin-spacer > .dw-testimonial-story-panel {
    top: 0 !important;
  }
}

.dw-testimonial-story-panel>.ks-section-title-wrap,
.dw-testimonial-story-panel>.ks_fade_anim,
.dw-testimonial-story-panel>.ks-about-2-user,
.dw-testimonial-story-panel>div:not([class]) {
  display: none !important;
}

.dw-testimonial-story-card {
  position: relative;
  z-index: 3;
  max-width: 510px;
  padding: 26px 32px 28px;
  background:
    radial-gradient(circle at 88% 22%, rgba(var(--theme-color1-rgb), 0.13), transparent 28%),
    linear-gradient(135deg, rgba(var(--theme-color1-rgb), 0.10) 0%, rgba(var(--theme-color-white-rgb), 0.96) 64%);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.12);
  box-shadow: 0 24px 70px rgba(var(--theme-color-dark-rgb), 0.08);
}

.dw-testimonial-story-subtitle {
  display: block;
  margin-bottom: 10px;
  color: var(--theme-color1);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.dw-testimonial-story-card h2 {
  margin: 0 0 14px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.dw-testimonial-story-card h2 span,
.dw-testimonial-story-card h2 strong {
  display: block;
}

.dw-testimonial-story-card h2 strong {
  color: var(--theme-color1);
}

.dw-testimonial-story-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.67);
  font-size: var(--body-font-size);
  line-height: 1.55;
  font-weight: 700;
}

.dw-testimonial-story-card p strong {
  color: var(--theme-color1);
  font-weight: 900;
}

.dw-testimonial-rocket-wrap {
  position: absolute;
  z-index: 4;
  top: 172px;
  right: -60px;
  width: min(300px, 59%);
  margin: 0;
  filter: drop-shadow(0 32px 45px rgba(var(--theme-color1-rgb), 0.20));
}

.dw-testimonial-rocket-wrap img {
  width: 100%;
  display: block;
}

.dw-testimonial-star {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.75;
}

.dw-testimonial-star::before,
.dw-testimonial-star::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: rgba(var(--theme-color1-rgb), 0.72);
  border-radius: 99px;
}

.dw-testimonial-star::before {
  width: 100%;
  height: 4px;
}

.dw-testimonial-star::after {
  width: 4px;
  height: 100%;
}

.dw-testimonial-star-one {
  left: 9%;
  top: 28%;
}

.dw-testimonial-star-two {
  right: 8%;
  top: 18%;
  transform: scale(0.78);
}

.dw-testimonial-rocket-cloud {
  position: absolute;
  left: 88px;
  top: 366px;
  z-index: 2;
  width: 330px;
  height: 118px;
  margin: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle at 22% 78%, rgba(255, 255, 255, 0.95) 0 22px, transparent 23px),
    radial-gradient(circle at 40% 68%, rgba(255, 255, 255, 0.96) 0 34px, transparent 35px),
    radial-gradient(circle at 60% 72%, rgba(255, 255, 255, 0.94) 0 28px, transparent 29px),
    radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.95) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(227, 244, 255, 0.82), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 0 0 1px rgba(var(--theme-color1-rgb), 0.08), 0 26px 65px rgba(var(--theme-color1-rgb), 0.11);
}

.dw-testimonial-story-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  max-width: 590px;
  margin-top: 0;
  padding: 20px 30px 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(var(--theme-color1-rgb), 0.16), transparent 30%),
    linear-gradient(135deg, rgba(var(--theme-color1-rgb), 0.11) 0%, rgba(var(--theme-color-white-rgb), 0.98) 76%);
  box-shadow: 0 28px 70px rgba(var(--theme-color-dark-rgb), 0.08);
}

.dw-testimonial-story-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(var(--theme-color-dark-rgb), 0.62);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.dw-testimonial-stars {
  color: var(--theme-color1);
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}

.dw-testimonial-story-rating strong {
  color: var(--theme-color1);
  font-weight: 900;
}

.dw-testimonial-story-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--theme-color-white) !important;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-yellow));
  box-shadow: 0 18px 42px rgba(var(--theme-color1-rgb), 0.34);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dw-testimonial-story-btn:hover {
  color: var(--theme-color-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(var(--theme-color1-rgb), 0.44);
}

/* ============================= */
/* DelosWeb Testimonial Video Modal */
/* ============================= */

.dw-testi-video-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.dw-testi-video-modal.is-open {
  display: flex !important;
}

.dw-testi-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--theme-color1-rgb), 0.32), transparent 38%),
    rgba(var(--theme-color-dark-rgb), 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dw-testi-video-dialog {
  position: relative;
  z-index: 2;
  width: min(1040px, 94vw);
  aspect-ratio: 16 / 9;
  background: var(--theme-color-dark);
  border-radius: 28px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 45px 130px rgba(var(--theme-color-dark-rgb), 0.68),
    0 0 90px rgba(var(--theme-color1-rgb), 0.38);
  animation: dwTestiVideoPop 0.35s ease forwards;
}

.dw-testi-video-player {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain;
  background: var(--theme-color-dark);
  border-radius: 28px;
}

.dw-testi-video-close {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(var(--theme-color-dark-rgb), 0.3);
  transition: all 0.3s ease;
}

.dw-testi-video-close:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  transform: rotate(90deg);
}

body.dw-testi-video-is-open {
  overflow: hidden;
}

@keyframes dwTestiVideoPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive */
@media (max-width: 767px) {

  .dw-video-testi-card,
  .dw-video-testi-inner,
  .dw-video-testi-inner img {
    border-radius: 18px;
  }

  .dw-testi-play-btn {
    width: 72px;
    height: 72px;
  }

  .dw-testi-play-icon {
    width: 58px;
    height: 58px;
  }

  .dw-testi-video-modal {
    padding: 18px;
  }

  .dw-testi-video-dialog {
    width: 96vw;
    border-radius: 18px;
  }

  .dw-testi-video-player {
    border-radius: 18px;
  }

  .dw-testi-video-close {
    top: -16px;
    right: -8px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

/* ============================================= */
/* Testimonial video cards — below 992px          */
/* GSAP pins .ks-testi-panel only at min-width:992px, */
/* so there is no pin-spacer and no definite parent   */
/* height on smaller screens. The height:100% chain   */
/* then collapses the cards. Give them a real height. */
/* ============================================= */
@media (max-width: 991px) {

  /* break the height:100% chain that only resolves when pinned */
  .ks-testimonial-2-area .ks-testi-panel {
    height: auto !important;
    max-height: none !important;
    margin-bottom: 24px;
  }

  /* give each video card a real, responsive height */
  .ks-testimonial-2-area .ks-testimonial-2-item-wrap.dw-video-testi-card {
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    /* adjust to taste, e.g. 16/9 or 1/1 */
    overflow: hidden;
    border-radius: 18px;
  }

  /* inner fills the card so the thumbnail + play button show */
  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner {
    height: 100% !important;
    padding: 0;
  }

  /* thumbnail (rendered on ::before) fills the whole card */
  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    clip-path: none;
    border-radius: 18px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-panel {
    position: relative;
    top: auto;
    min-height: 0;
    margin-bottom: 34px;
  }

  .ks-testimonial-2-area .dw-testimonial-rocket-wrap,
  .ks-testimonial-2-area .dw-testimonial-rocket-cloud,
  .ks-testimonial-2-area .dw-testimonial-story-footer {
    position: relative;
    inset: auto;
  }

  .ks-testimonial-2-area .dw-testimonial-rocket-wrap {
    width: min(360px, 78%);
    margin: -58px auto 0;
  }

  .ks-testimonial-2-area .dw-testimonial-rocket-cloud {
    width: min(330px, 76%);
    margin: -74px auto 24px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-footer {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .ks-testimonial-2-area {
    overflow: hidden !important;
  }

  .ks-testimonial-2-area .row {
    row-gap: 28px;
  }

  .ks-testimonial-2-area .pin-spacer,
  .ks-testimonial-2-area .dw-testimonial-story-pin-spacer {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .ks-testimonial-2-area .ks-testi-panel,
  .ks-testimonial-2-area .dw-testimonial-story-panel {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 0 26px !important;
    transform: none !important;
  }

  .ks-testimonial-2-area .ks-testi-panel:not(.dw-testimonial-story-panel) {
    margin-bottom: 22px !important;
  }

  .ks-testimonial-2-area .ks-testimonial-2-item-wrap.dw-video-testi-card {
    aspect-ratio: 114 / 59;
    min-height: 190px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 44%, rgba(var(--theme-color1-rgb), 0.20), transparent 48%),
      var(--theme-color-dark);
    box-shadow: 0 18px 42px rgba(var(--theme-color-dark-rgb), 0.14);
  }

  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    background: var(--theme-color-dark);
    overflow: hidden;
  }

  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 18px;
    transform: none;
    clip-path: none;
  }

  .ks-testimonial-2-area .dw-testi-play-btn {
    width: 66px;
    height: 66px;
  }

  .ks-testimonial-2-area .dw-testi-play-icon {
    width: 54px;
    height: 54px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-card {
    max-width: 100%;
    padding: 24px 22px 26px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-card h2 {
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .ks-testimonial-2-area .dw-testimonial-story-card p {
    max-width: 100%;
  }

  .ks-testimonial-2-area .dw-testimonial-rocket-wrap {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    width: min(260px, 72%);
    margin: -42px auto -4px;
    pointer-events: none;
    transform: none !important;
  }

  .ks-testimonial-2-area .dw-testimonial-rocket-cloud {
    opacity: 54%;
    position: relative !important;
    inset: auto !important;
    width: min(300px, 82%);
    height: 86px;
    margin: -54px auto 22px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-footer {
    position: relative !important;
    inset: auto !important;
    max-width: 100%;
    padding: 18px 20px 20px;
  }

  .ks-testimonial-2-area .dw-testimonial-story-rating {
    flex-wrap: wrap;
  }

  .ks-testimonial-2-area .dw-testimonial-story-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    text-align: center;
  }
}


/* ============================= */
/* Home Areas We Serve           */
/* ============================= */

.dw-home-areas-section {
  position: relative;
  padding: 118px 0 126px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 32%, rgba(var(--theme-color1-rgb), 0.34), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(var(--theme-color-yellow-rgb), 0.26), transparent 30%),
    linear-gradient(135deg, var(--theme-color-dark) 0%, #02071f 58%, #000018 100%);
}

.dw-home-areas-title {
  margin-bottom: 48px;
  color: var(--theme-color1);
  font-size: clamp(52px, 7.6vw, 118px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.dw-home-areas-panel {
  position: relative;
  width: 100%;
  margin-left: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color-white-rgb), 0.08);
  border-radius: 2px;
  background: transparent;
  box-shadow: 0 34px 95px rgba(var(--theme-color-dark-rgb), 0.22);
}

.dw-home-areas-panel::before,
.dw-home-areas-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dw-home-areas-panel::before {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(var(--theme-color-white-rgb), 0.74) 0 1px, transparent 1.6px),
    linear-gradient(90deg, rgba(var(--theme-color1-rgb), 0.06), transparent 46%, rgba(var(--theme-color1-rgb), 0.08));
  background-size: 72px 72px, 100% 100%;
  opacity: 0.4;
}

.dw-home-areas-panel::after {
  inset: 18px;
  border: 1px solid rgba(var(--theme-color-white-rgb), 0.08);
  box-shadow: inset 0 0 90px rgba(var(--theme-color1-rgb), 0.18);
}

.dw-home-areas-map,
.dw-home-areas-rocket,
.dw-home-areas-clouds {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.dw-home-areas-map {
  top: 70px;
  right: max(34px, calc((100vw - var(--container-width)) / 2 - 28px));
  z-index: 1;
  width: min(64vw, 1040px);
  max-width: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 26px rgba(var(--theme-color1-rgb), 0.72)) drop-shadow(0 0 70px rgba(var(--theme-color1-rgb), 0.38));
}

.dw-home-areas-rocket {
  left: max(290px, calc((111vw - var(--container-width)) / 2 + 360px));
  bottom: 36px;
  z-index: 4;
  width: min(23vw, 310px);
  transform: rotate(-13deg);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
  animation: dwHomeAreasFloat 5.6s ease-in-out infinite;
}

.dw-home-areas-clouds {
  left: calc((100vw - var(--container-width)) / -2);
  bottom: 5px;
  z-index: 3;
  width: min(58vw, 820px);
  max-width: none;
  opacity: 0.9;
}

.dw-home-areas-content {
  position: relative;
  z-index: 5;
  max-width: 470px;
  margin-left: max(24px, calc((100vw - var(--container-width)) / 2));
  padding: 58px 0 0 0;
}

.dw-home-areas-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--theme-color1);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-home-areas-content h3 {
  margin-bottom: 22px;
  color: var(--theme-color-white);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.dw-home-areas-content h3 strong {
  display: block;
    color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-home-areas-content>p {
  color: rgba(var(--theme-color-white-rgb), 0.78);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 600;
}

.dw-home-areas-info-card,
.dw-home-areas-la-card,
.dw-home-areas-nation-card,
.dw-home-areas-cta-card {
  position: relative;
  z-index: 6;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.42);
  background: rgba(3, 11, 48, 0.78);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.dw-home-areas-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 420px);
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 18px;
}

.dw-home-areas-info-card span,
.dw-home-areas-la-card span,
.dw-home-areas-nation-card span {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-color-white);
  font-size: 28px;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-yellow));
  box-shadow: 0 0 34px rgba(var(--theme-color1-rgb), 0.55);
}

.dw-home-areas-info-card h4,
.dw-home-areas-la-card h4,
.dw-home-areas-nation-card h4,
.dw-home-areas-cta-card h4 {
  margin-bottom: 4px;
  color: var(--theme-color-white);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.dw-home-areas-info-card p,
.dw-home-areas-la-card p,
.dw-home-areas-nation-card p,
.dw-home-areas-cta-card p {
  margin: 0;
  color: rgba(var(--theme-color-white-rgb), 0.72);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 600;
}

.dw-home-areas-la-card,
.dw-home-areas-nation-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
}

.dw-home-areas-la-card {
  top: 205px;
  left: max(560px, calc((110vw - var(--container-width)) / 2 + 610px));
}

.dw-home-areas-nation-card {
  top: 42px;
  right: max(32px, calc((100vw - var(--container-width)) / 2));
}

.dw-home-areas-nation-card strong {
  display: block;
  margin-top: 2px;
  color: var(--theme-color1);
  font-size: 14px;
  line-height: 1.2;
}

.dw-home-areas-cta-card {
  position: absolute;
  right: max(32px, calc((100vw - var(--container-width)) / 2));
  bottom: 4px;
  z-index: 7;
  width: min(58%, 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 18px;
}

.dw-home-areas-cta-card h4 {
  color: var(--theme-color1);
}

.dw-home-areas-cta-card a {
  flex: 0 0 auto;
  min-width: 250px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  color: var(--theme-color-white);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--theme-color1), var(--theme-color-yellow));
  box-shadow: 0 16px 34px rgba(var(--theme-color1-rgb), 0.38);
}

.dw-home-areas-cta-card a:hover {
  color: var(--theme-color-white);
  transform: translateY(-2px);
}

@keyframes dwHomeAreasFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-13deg);
  }

  50% {
    transform: translateY(-14px) rotate(-10deg);
  }
}

@media (max-width: 1500px) {

.dw-home-areas-clouds {
  left: calc((109vw - var(--container-width)) / -2);
  }
}

@media (max-width: 1381px) {
.dw-home-areas-rocket{
    left: max(290px, calc((119vw - var(--container-width)) / 2 + 360px));
    bottom: 36px;
  }
.dw-home-areas-la-card {
    top: 205px;
    left: max(560px, calc((119vw - var(--container-width)) / 2 + 610px));
  }

      .dw-home-areas-clouds {
        left: calc((122vw - var(--container-width)) / -2);
    }
}
@media (max-width: 1288px) {
    .dw-home-areas-rocket {
        left: max(290px, calc((128vw - var(--container-width)) / 2 + 360px));
        bottom: 36px;
    }
        .dw-home-areas-la-card {
        top: 205px;
        left: max(560px, calc((125vw - var(--container-width)) / 2 + 610px));
    }

}
@media (max-width: 1199px) {
  .dw-home-areas-panel {
    min-height: 700px;
  }

  .dw-home-areas-clouds {
    left: 50%;
    right: auto;
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    transform: translateX(-50%);
  }

  .dw-home-areas-map {
    width: 850px;
    right: -110px;
  }

  .dw-home-areas-rocket {
    left: 42%;
    width: 250px;
  }

  .dw-home-areas-cta-card {
    width: calc(100vw - 72px);
  }
}

@media (max-width: 991px) {
  .dw-home-areas-section {
    padding: 88px 0 96px;
  }

  .dw-home-areas-panel {
    min-height: auto;
    padding: 46px 24px 34px;
  }

  .dw-home-areas-content {
    max-width: none;
    margin-left: 0;
    padding: 0;
  }

  .dw-home-areas-map {
    top: 160px;
    right: -300px;
    width: 760px;
  }

  .dw-home-areas-rocket {
    right: 140px;
    left: auto;
    bottom: 130px;
    width: 335px;
    opacity: 0.85;
    z-index: 7;
  }

  .dw-home-areas-la-card,
  .dw-home-areas-nation-card,
  .dw-home-areas-cta-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  .dw-home-areas-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .dw-home-areas-content {
    max-width: min(100%, 420px);
    padding-right: 24px;
  }

  .dw-home-areas-rocket {
    top: 38px;
    right: 18px;
    bottom: auto;
    left: auto;
    width: clamp(104px, 22vw, 150px);
    opacity: 0.96;
    transform: rotate(-12deg);
  }

  .dw-home-areas-clouds {
    left: 50%;
    right: auto;
    bottom: -18px;
    width: 100vw;
    min-width: 100vw;
    max-width: none;
    height: auto;
    opacity: 0.95;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .dw-home-areas-title {
    margin-bottom: 30px;
    font-size: 42px;
  }

  .dw-home-areas-panel {
    padding: 34px 18px 26px;
  }

  .dw-home-areas-content {
    max-width: none;
    padding-right: 0;
  }

  .dw-home-areas-content h3 {
    font-size: 36px;
  }

  .dw-home-areas-info-card,
  .dw-home-areas-la-card,
  .dw-home-areas-nation-card {
    align-items: flex-start;
    padding: 18px;
  }

  .dw-home-areas-rocket {
    display: none;
  }

  .dw-home-areas-cta-card {
    padding: 20px;
  }

  .dw-home-areas-cta-card a {
    width: 100%;
    min-width: 0;
  }
}


/* ============================= */
/* Home Ready-To-Go Websites     */
/* ============================= */

.dw-home-ready-sites-section {
  position: relative;
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--theme-color-dark-rgb), 0.06) 0 0, transparent 380px),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--gray-color5) 100%);
  overflow: hidden;
}

.dw-home-ready-sites-section::before {
  content: "";
  position: absolute;
  inset: 58px 12px 32px;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.04);
  background: rgba(var(--theme-color-white-rgb), 0.64);
  box-shadow: inset 0 0 70px rgba(var(--theme-color-dark-rgb), 0.035);
  pointer-events: none;
}

.dw-home-ready-sites-section .auto-container {
  position: relative;
  z-index: 2;
}

.dw-home-ready-sites-heading {
  max-width: 880px;
  margin: 0 auto 46px;
}

.dw-home-ready-sites-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--theme-color1);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dw-home-ready-sites-heading h2 {
  margin-bottom: 16px;
  color: var(--headings-color);
  font-size: var(--h2-font-size);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.dw-home-ready-sites-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-color3);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 600;
}

.dw-home-ready-sites-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: stretch;
}

.dw-home-ready-sites-carousel {
  position: relative;
  min-width: 0;
}

.dw-home-ready-sites-viewport {
  overflow: hidden;
  border-radius: 24px;
  padding: 12px;
  margin: -12px;
}

.dw-home-ready-sites-grid {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.dw-home-ready-sites-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dw-home-ready-sites-loading {
  min-height: 300px;
  display: grid;
  place-items: center;
  color: var(--text-color3);
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
  border-radius: 22px;
  background: var(--theme-color-white);
}

.dw-home-ready-sites-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.12);
  border-radius: 50%;
  color: var(--theme-color1);
  background: var(--theme-color-white);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.14);
  transform: translateY(-50%);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.dw-home-ready-sites-arrow:hover {
  color: var(--theme-color-white);
  border-color: var(--theme-color1);
  background: var(--theme-color1);
  transform: translateY(-50%) scale(1.05);
}

.dw-home-ready-sites-arrow-prev {
  left: -27px;
}

.dw-home-ready-sites-arrow-next {
  right: -27px;
}

.dw-home-ready-site-card {
  min-width: 0;
}

.dw-home-ready-site-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.10);
  border-radius: 22px;
  background: var(--theme-color-white);
  box-shadow: 0 22px 55px rgba(var(--theme-color-dark-rgb), 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dw-home-ready-site-card-inner:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--theme-color-dark-rgb), 0.18);
  box-shadow: 0 28px 70px rgba(var(--theme-color-dark-rgb), 0.12);
}

.dw-home-ready-site-image {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  background: var(--gray-color5);
}

.dw-home-ready-site-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.45s ease;
}

.dw-home-ready-site-card-inner:hover .dw-home-ready-site-image img {
  transform: scale(1.04);
}

.dw-home-ready-site-body {
  flex: 1;
  padding: 20px 20px 22px;
  text-align: center;
}

.dw-home-ready-site-body h3 {
  margin-bottom: 16px;
  color: var(--headings-color);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.dw-home-ready-site-btn,
.dw-home-ready-sites-outline-btn,
.dw-home-ready-sites-panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dw-home-ready-site-btn,
.dw-home-ready-sites-outline-btn {
  color: var(--theme-color1);
  border: 2px solid rgba(var(--theme-color-dark-rgb), 0.16);
  background: var(--theme-color-white);
}

.dw-home-ready-site-btn:hover,
.dw-home-ready-sites-outline-btn:hover {
  color: var(--theme-color-white);
  border-color: var(--theme-color1);
  background: var(--theme-color1);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.14);
  transform: translateY(-2px);
}

.dw-home-ready-sites-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 34px 26px;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.12);
  border-radius: 22px;
  background: rgba(var(--theme-color-white-rgb), 0.78);
  box-shadow: 0 22px 55px rgba(var(--theme-color-dark-rgb), 0.06);
}

.dw-home-ready-sites-panel p {
  margin-bottom: 34px;
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.dw-home-ready-sites-panel-btn {
  color: var(--theme-color-white);
  background: var(--theme-color1);
  border: 2px solid var(--theme-color1);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.14);
}

.dw-home-ready-sites-panel-btn:hover {
  color: var(--theme-color1);
  background: var(--theme-color-white);
  transform: translateY(-2px);
}

.dw-home-ready-sites-actions {
  margin-top: 42px;
}

@media (max-width: 1199px) {
  .dw-home-ready-sites-showcase {
    grid-template-columns: 1fr;
  }

  .dw-home-ready-sites-panel {
    min-height: auto;
    text-align: center;
  }
}
@media (max-width: 99px) {
.dw-home-areas-content h3 strong {
    display: contents;
    color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
  }
}
@media (max-width: 767px) {
  .dw-home-ready-sites-section {
    padding: 82px 0 78px;
  }

  .dw-home-ready-sites-section::before {
    inset: 28px 8px 24px;
  }

  .dw-home-ready-sites-heading {
    margin-bottom: 34px;
  }

  .dw-home-ready-sites-slide {
    grid-template-columns: 1fr;
  }

  .dw-home-ready-site-image {
    height: 250px;
  }

  .dw-home-ready-sites-arrow {
    top: auto;
    bottom: -24px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .dw-home-ready-sites-arrow:hover {
    transform: translateY(-2px);
  }

  .dw-home-ready-sites-arrow-prev {
    left: calc(50% - 58px);
  }

  .dw-home-ready-sites-arrow-next {
    right: calc(50% - 58px);
  }

  .dw-home-ready-sites-carousel {
    padding-bottom: 54px;
  }

  .dw-home-ready-sites-panel {
    padding: 28px 22px;
  }

  .dw-home-ready-sites-panel p {
    font-size: var(--body-font-size);
  }
}

.contact-container {
    margin: 0 auto;
    max-width: 1400px;
}

.ks-contact-input-box select {
  width: 100%;
  height: 60px;
  border: none;
  outline: none;
  padding: 0 25px;
  color: inherit;
  background-color: var(--gray-color);
  border-radius: 20;
  appearance: none;
  display: block !important;
  overflow: hidden;
}

.nice-select {
  display: none;
}

.header-style-eight .main-menu .navigation>li>a,
.header-style-eight .main-menu .navigation .dropdown .dropdown-btn {
  color: var(--theme-color-dark);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


.icon-box .icon-img {
  height: 34px !important;

}

.inner-column h1 {
  font-size: var(--h1-font-size);
}



/* responsive */

@media (max-width: 768px) {

  .ks-hero-2-title,
  h1 {
    font-size: 34px !important;
  }

  .hero-cartoon-icon {
    height: 500px;
  }

  .ks-hero-2-shape-1 {
    top: 30%;
  }

  .ks-hero-2-shape-1 {
    right: -40px !important;
  }

  .service-block-three:first-child {
    display: none !important;
  }

  .ks-section-title,
  .dw-custom-title,
  .dw-blog-learning-card h3,
  .sec-title h3,
  .dw-beauty-heading,
  .dw-local-title,
  .dw-local-option h3,
  .product-details__title,
  .product-discription .product-description__title,
  .related-product h3,
  .dw-checkout-panel h2,
  .dw-checkout-summary h2,
  .dw-quote-aside h2,
  .dw-order-result-card-head h2 {
    font-size: 28px !important;
  }

  .dw-industries-section {
    padding: 50px 0;
  }

  .ks-contact-shape-1 {
    width: 100px !important;
    top: 0;
  }

  .ks-about-3-thumb img {
    height: auto !important;
  }

  .image-1 img {
    height: auto !important;
  }

  .dw-about-metric-card h3 {
    font-size: 40px !important;
  }

  .ks-blog-area.innerpage-style {
    padding-top: 100px;
  }

  .dw-home-diy-points{
    margin-top: 0px !important;
  }

  .dw-diy-pro-hero-grid{
    gap: 0px !important;
  }
}

@media (max-width: 426px) {

  .ks-hero-2-title,
  h1 {
    font-size: 34px !important;
  }

  .ks-section-title,
  .dw-custom-title,
  .dw-blog-learning-card h3,
  .dw-blog-guide-path-content h3,
  .sec-title h3,
  .blog-details__title,
  .blog-details__content h2,
  .blog-details__content h3,
  .dw-faq-content h3,
  .dw-beauty-heading,
  .dw-beauty-option-card h3,
  .dw-local-title,
  .dw-local-option h3,
  .product-details__title,
  .product-discription .product-description__title,
  .related-product h3,
  .dw-checkout-panel h2,
  .dw-checkout-summary h2,
  .dw-quote-aside h2,
  .dw-order-result-card-head h2 {
    font-size: 28px !important;
  }

  .service-block-three:first-child,
  .service-block-three:last-child {
    display: none;
  }

  .dw-home-ready-sites-section {
    padding: 82px 0 78px;
  }

  .ks-blog-area,
  .dw-faq-section {
    padding-top: 0;
  }

  .dw-custom-image-caption h3 {
    font-size: 25px !important;
  }

  .dw-about-metric-card h3 {
    font-size: 35px !important;
  }

  .dw-about-showcase-section .container {
    padding-top: 0 !important;
  }

  section.dw-ready-first-section {
    padding-top: 120px !important;
  }
}

/* =========================================================
   DELOSWEB HOME PAGE — SECOND-PASS REFINEMENT OVERRIDES
   ========================================================= */

/* 1. WEBSITE SOLUTIONS (.dw-solution-select-section) */
@media (max-width: 1199px) {
  body.dw-home-page .dw-solution-select-info {
    padding: 24px 22px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.dw-home-page .dw-solution-select-card {
    grid-template-columns: clamp(180px, 35%, 230px) 1fr !important;
    min-height: auto !important;
  }
  body.dw-home-page .dw-solution-media {
    border-radius: 30px 0 0 30px !important;
    min-height: 200px !important;
  }
  body.dw-home-page .dw-solution-info {
    padding: 22px 20px !important;
  }
}

/* 2. TWO WAYS TO GET YOUR WEBSITE ONLINE (.dw-process-slider-section) */
@media (max-width: 1199px) {
  body.dw-home-page .dw-process-card {
    padding: 32px 28px !important;
    min-height: auto !important;
  }
  body.dw-home-page .dw-process-list {
    margin-bottom: 24px !important;
  }
  body.dw-home-page .dw-process-list li {
    margin-bottom: 8px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.dw-home-page .dw-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  body.dw-home-page .dw-process-card {
    padding: 28px 24px !important;
    min-height: auto !important;
  }
  body.dw-home-page .dw-process-list {
    margin-bottom: 20px !important;
  }
  body.dw-home-page .dw-process-list li {
    margin-bottom: 6px !important;
  }
}

/* 3. YOUR WEBSITE SHOULD WORK HARDER THAN YOU DO (.ks-about-3-area) */
@media (min-width: 768px) and (max-width: 1199px) {
  body.dw-home-page .ks-about-3-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 28px !important;
    row-gap: 20px !important;
    align-items: start !important;
  }
  body.dw-home-page .ks-about-3-wrap .about-content {
    order: 2 !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  body.dw-home-page .ks-about-3-thumb.delos-video-thumb {
    order: 1 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  body.dw-home-page .ks-about-3-thumb.delos-video-thumb img {
    height: auto !important;
    max-height: 440px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 767px) {
  body.dw-home-page .ks-about-3-wrap .about-content .why-chose-box .inner-box {
    padding: 16px 14px !important;
    margin-bottom: 10px !important;
  }
  body.dw-home-page .ks-about-3-thumb.delos-video-thumb img {
    height: auto !important;
    max-height: 320px !important;
    object-fit: cover !important;
  }
}

/* 4. HE SHOWED UP PROFESSIONAL (.dw-solve-section) */
@media (min-width: 768px) and (max-width: 1199px) {
  body.dw-home-page .dw-solve-wrapper {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
    align-items: center !important;
  }
  body.dw-home-page .dw-solve-image-card img {
    height: auto !important;
    max-height: 420px !important;
    object-fit: cover !important;
  }
  body.dw-home-page .dw-solve-item {
    min-height: auto !important;
    padding: 20px 18px !important;
  }
}

@media (max-width: 767px) {
  body.dw-home-page .dw-solve-wrapper {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body.dw-home-page .dw-solve-image-card img {
    height: auto !important;
    max-height: 320px !important;
    object-fit: cover !important;
  }
  body.dw-home-page .dw-solve-item {
    min-height: auto !important;
    padding: 18px 16px !important;
  }
}

/* 5. FINAL HOME CTA (.dw-contact-launch-section) */
@media (max-width: 1199px) {
  body.dw-home-page .dw-contact-form-wrap .form-group {
    margin-bottom: 16px !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.dw-home-page .dw-contact-launch-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    align-items: center !important;
  }
  body.dw-home-page .dw-contact-rocket-wrap {
    width: min(170px, 45vw) !important;
    margin: -10px auto -5px !important;
  }
}

/* 6. BLOG / WEBSITE ADVICE (.ks-blog-area) */
@media (max-width: 1199px) {
  body.dw-home-page .ks-blog-area .ks-section-title-wrap {
    margin-bottom: 32px !important;
  }
  body.dw-home-page .ks-blog-item .ks-blog-thumb img {
    max-height: 220px !important;
    object-fit: cover !important;
  }
}

@media (max-width: 376px) {

  .ks-hero-2-title,
  h1 {
    font-size: 34px !important;
  }

  .ks-brand-text-two {
    font-size: 20px !important;
  }

  .ks-section-title,
  .project-block-two .inner-box .title,
  .dw-custom-title,
  .dw-order-result-card-head h2,
  .dw-portfolio-value-card h4,
  .content-box .title,
  .dw-standard-card .title,
  .dw-blog-guide-path-content h3,
  .sec-title h3,
  .blog-details__title,
  .blog-details__content h2,
  .blog-details__content h3,
  .dw-faq-content h3,
  .dw-contractor-option-card h3,
  .dw-beauty-heading,
  .dw-beauty-option-card h3,
  .dw-beauty-contact-card h3,
  .dw-local-title,
  .dw-local-option h3,
  .dw-local-form h3,
  .product-discription .product-description__title,
  .related-product h3,
  .dw-checkout-panel h2,
  .dw-checkout-summary h2,
  .dw-quote-aside h2 {
    font-size: 28px !important;
  }

  .project-section-two {
    padding-top: 0 !important;
  }

  .dw-custom-image-caption h3,
  .dw-custom-ba-content h3,
  .dw-custom-compare-head div,
  .dw-portfolio-direction-right h3,
  .dw-webpage-process-section h3,
  .dw-blog-learning-card h3,
  .dw-wwa-panel h3,
  .dw-contractor-problem-card h3,
  .dw-contractor-build-card h3,
  .dw-beauty-problem-card h3,
  .dw-beauty-audience-card h3,
  .dw-beauty-benefit-card h3,
  .dw-rtg-benefit-card h3,
  .dw-rtg-step-card h3,
  .dw-rtg-audience-card h3,
  .dw-rtg-compare-col h3,
  .product-details__title,
  .dw-quote-form-intro h2,
  .dw-quote-expectations-grid h3,
  .dw-order-result-card-head h2,
  .dw-order-result-step h3 {
    font-size: 20px !important;
  }

  .dw-about-metric-card h3 {
    font-size: 30px !important;
  }

  .nav-links>div>a {
    font-size: 18px !important;
  }

  .dw-ready-content h4 a {
    font-size: 18px !important;
  }

}

/* Homepage CTA color system: one gradient across the navbar and sections. */
body.dw-home-page :is(
  .ks-btn-black,
  .dw-space-btn-primary,
  .dw-space-btn-secondary,
  .dw-about-more-btn,
  .dw-process-bottom-btn,
  .dw-home-diy-button,
  .dw-projects-btn,
  .dw-choose-video-cta-btn,
  .dw-home-areas-cta-card > a,
  .dw-solve-btn,
  .dw-testimonial-story-btn,
  .dw-contact-submit-btn,
  .dw-footer-cta-primary,
  .dw-footer-cta-secondary
) {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%) !important;
  color: var(--theme-color-white) !important;
}

body.dw-home-page :is(
  .ks-btn-black,
  .dw-space-btn-primary,
  .dw-space-btn-secondary,
  .dw-about-more-btn,
  .dw-process-bottom-btn,
  .dw-home-diy-button,
  .dw-projects-btn,
  .dw-choose-video-cta-btn,
  .dw-home-areas-cta-card > a,
  .dw-solve-btn,
  .dw-testimonial-story-btn,
  .dw-contact-submit-btn,
  .dw-footer-cta-primary,
  .dw-footer-cta-secondary
):hover {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%) !important;
  color: var(--theme-color-white) !important;
}



@media (max-width: 320px) {

  .ks-hero-2-title,
  h1 {
    font-size: 34px !important;
  }

  .ks-section-title,
  .project-block-two .inner-box .title,
  .dw-custom-title,
  .dw-portfolio-value-card h4,
  .content-box .title,
  .dw-standard-card .title,
  .dw-blog-guide-path-content h3,
  .blog-details__title,
  .blog-details__content h3,
  .blog-details__content h2,
  .dw-wwa-subhead,
  .dw-contractor-option-card h3,
  .dw-beauty-heading,
  .dw-beauty-option-card h3,
  .dw-beauty-contact-card h3,
  .dw-local-title,
  .dw-local-option h3,
  .dw-local-form h3,
  .dw-contactblock-card h3,
  .product-details__title,
  .product-discription .product-description__title,
  .related-product h3,
  .dw-checkout-panel h2,
  .dw-checkout-summary h2,
  .dw-quote-aside h2,
  .dw-order-result-card-head h2 {
    font-size: 28px !important;
  }

  .ks-brand-text-two,
  .dw-wwa-panel h3,
  .dw-process-step-body h3,
  .dw-contractor-problem-card h3,
  .dw-contractor-work-item h3,
  .dw-contractor-build-card h3,
  .dw-beauty-problem-card h3,
  .dw-beauty-audience-card h3,
  .dw-beauty-benefit-card h3,
  .dw-rtg-benefit-card h3,
  .dw-rtg-step-card h3,
  .dw-rtg-audience-card h3,
  .dw-rtg-compare-col h3,
  .dw-quote-expectations-grid h3,
  .dw-order-result-step h3 {
    font-size: 18px !important;
  }

  .dw-ready-content h4 a,
  .dw-quote-group legend {
    font-size: 16px !important;
  }

  .about-area-home4 {
    padding-top: 0 !important;
  }

  .project-section-two {
    padding-bottom: 60px !important;
  }

  .process-fan-heading {
    display: flex;
    flex-direction: column;
  }

  .process-fan-heading span {
    margin-left: inherit;
  }

  .dw-custom-decision-item {
    display: flex !important;
    flex-direction: column !important;
  }

  .dw-blog-topics-image img,
  .dw-blog-guide-image img {
    height: auto !important;
  }

  .dw-blog-topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .auto-container {
    padding: 0px 15px !important;
  }




}

/* ================================
   DelosWeb About Showcase Section
================================ */

.dw-about-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--theme-color-yellow-rgb), 0.08) 0%, rgba(var(--theme-color-yellow-rgb), 0) 32%),
    radial-gradient(circle at 86% 82%, rgba(var(--theme-color-dark-rgb), 0.06) 0%, rgba(var(--theme-color-dark-rgb), 0) 34%),
    var(--theme-color-white);
}

.dw-about-showcase-section .container-1450 {
  position: relative;
  z-index: 4;
}

/* background line */
.dw-about-bg-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42px;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

.dw-about-bg-line img {
  width: 100%;
  display: block;
}

/* large ABOUT watermark */
.dw-about-watermark {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: clamp(85px, 12vw, 190px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--theme-color-dark-rgb), 0.10);
  opacity: 0.95;
  pointer-events: none;
}

/* content */
.dw-about-content {
  position: relative;
  z-index: 5;
  max-width: 560px;
}

.dw-about-content .ks-section-title {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.04;
  letter-spacing: -1.4px;
  margin-bottom: 28px;
}

.dw-about-content .text {
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 34px;
}

/* proof list */
.dw-about-proof-list {
  display: grid;
  gap: 16px;
}

.dw-about-proof-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
  box-shadow: 0 14px 36px rgba(var(--theme-color-dark-rgb), 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.dw-about-proof-item:hover {
  transform: translateX(8px);
  border-color: rgba(var(--theme-color-yellow-rgb), 0.22);
  box-shadow: 0 20px 50px rgba(var(--theme-color-dark-rgb), 0.10);
}

.dw-about-proof-item span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color-yellow) 100%);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.dw-about-proof-item p {
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  margin-bottom: 0;
}

/* visual composition */
.dw-about-visual-wrap {
  position: relative;
  z-index: 4;
  min-height: 720px;
  margin-left: 15px;
}

/* Main top mockup */
.dw-about-main-mockup {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  z-index: 5;
  filter: drop-shadow(0 24px 48px rgba(var(--theme-color-dark-rgb), 0.16));
}

.dw-about-main-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom left mockup */
.dw-about-secondary-mockup {
  position: absolute;
  left: 0;
  bottom: -85px;
  width: 52%;
  z-index: 6;
  filter: drop-shadow(0 24px 46px rgba(var(--theme-color-dark-rgb), 0.16));
}

.dw-about-secondary-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Central website tool graphic */
.dw-about-tool-card {
  position: absolute;
  left: 81%;
  top: 95%;
  transform: translate(-50%, -50%);
  width: 34%;
  z-index: 7;
  filter: drop-shadow(0 26px 45px rgba(var(--theme-color-yellow-rgb), 0.22));
}

.dw-about-tool-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* subtle pattern */
.dw-about-pattern {
  position: absolute;
  right: 2%;
  bottom: 42px;
  width: 42%;
  z-index: 2;
  opacity: 0.55;
}

.dw-about-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

/* visual glow */
.dw-about-visual-wrap::before {
  content: "";
  position: absolute;
  top: 16%;
  right: 14%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(var(--theme-color-yellow-rgb), 0.10);
  filter: blur(6px);
  z-index: 1;
}

.dw-about-visual-wrap::after {
  content: "";
  position: absolute;
  left: 13%;
  bottom: 11%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(var(--theme-color-dark-rgb), 0.055);
  filter: blur(6px);
  z-index: 1;
}

/* floating badges */
.dw-about-floating-card {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 100px;
  color: var(--theme-color-white);
  background: rgba(var(--theme-color-dark-rgb), 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.22);
  backdrop-filter: blur(10px);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.dw-about-floating-card i {
  color: var(--theme-color-yellow);
  font-size: 17px;
}

.dw-about-floating-card-one {
  top: 31%;
  right: 58%;
  animation: dwAboutFloat 5s ease-in-out infinite;
}

.dw-about-floating-card-two {
  left: 50%;
  bottom: 25%;
  animation: dwAboutFloat 6s ease-in-out infinite reverse;
}

@keyframes dwAboutFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ================================
   Responsive - About Showcase
================================ */

/* ================================
   1024px
================================ */


@media (max-width: 1024px) {
  .dw-about-showcase-section {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .dw-about-content {
    max-width: 520px;
  }

  .dw-about-content .ks-section-title {
    font-size: 52px;
    line-height: 1.05;
  }

  .dw-about-content .text {
    font-size: 16px;
    line-height: 1.75;
  }

  .dw-about-proof-item {
    padding: 16px 18px;
  }

  .dw-about-visual-wrap {
    min-height: 650px;
    margin-left: 0;
  }

  .dw-about-main-mockup {
    width: 62%;
    right: 0;
    top: 10px;
  }

  .dw-about-secondary-mockup {
    width: 55%;
    left: -10px;
    bottom: -55px;
  }

  .dw-about-tool-card {
    left: 82%;
    top: 105%;
    width: 45%;
  }

  .dw-about-pattern {
    right: 0;
    bottom: 55px;
    width: 46%;
  }

  .dw-about-floating-card-one {
    top: 30%;
    right: 50%;
  }

  .dw-about-floating-card-two {
    left: 46%;
    bottom: 28%;
  }

  .dw-about-watermark {
    top: 54%;
    font-size: 140px;
  }
}


/* ================================
   768px / Tablet
================================ */
@media (max-width: 768px) {
  .dw-about-showcase-section {
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .dw-about-showcase-section .row {
    row-gap: 40px;
  }

  .dw-about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .dw-about-content .ks-section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .dw-about-content .text {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .dw-about-proof-list {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .dw-about-proof-item {
    text-align: left;
  }

  .dw-about-visual-wrap {
    min-height: 610px;
    max-width: 690px;
    margin: 0 auto;
  }

  .dw-about-main-mockup {
    top: 0;
    right: 0;
    width: 57%;
  }

  .dw-about-secondary-mockup {
    left: 0;
    bottom: -124px;
    width: 56%;
  }

  .dw-about-tool-card {
    left: 84%;
    top: 101%;
    width: 34%;
  }

  .dw-about-pattern {
    right: 4%;
    bottom: 62px;
    width: 44%;
  }

  .dw-about-floating-card {
    font-size: 13px;
    padding: 11px 15px;
  }

  .dw-about-floating-card-one {
    top: 30%;
    right: 48%;
  }

  .dw-about-floating-card-two {
    left: 53%;
    bottom: 12%;
  }

  .dw-about-watermark {
    top: 58%;
    font-size: 110px;
    letter-spacing: 4px;
  }

  .dw-about-bg-line {
    bottom: 25px;
    opacity: 0.42;
  }
}


/* ================================
   425px / Mobile Large
================================ */
@media (max-width: 426px) {
  .dw-about-showcase-section {
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .dw-about-content {
    text-align: left;
  }

  .dw-about-content .ks-section-title {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.7px;
    margin-bottom: 22px;
  }

  .dw-about-content .text {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .dw-about-proof-list {
    gap: 14px;
  }

  .dw-about-proof-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
  }

  .dw-about-proof-item span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .dw-about-visual-wrap {
    min-height: 520px;
    margin-top: 20px;
  }

  .dw-about-main-mockup {
    top: 0;
    right: 0;
    width: 78%;
  }

  .dw-about-secondary-mockup {
    left: 0;
    bottom: -100px;
    width: 75%;
  }

  .dw-about-tool-card {
    left: auto;
    right: -120px;
    top: 112%;
    width: 46%;
    transform: translateY(-50%);
  }

  .dw-about-pattern {
    right: 0;
    bottom: 70px;
    width: 62%;
    opacity: 0.45;
  }

  .dw-about-floating-card {
    font-size: 11.5px;
    padding: 9px 12px;
    gap: 7px;
  }

  .dw-about-floating-card i {
    font-size: 14px;
  }

  .dw-about-floating-card-one {
    top: 24%;
    left: 0;
    right: auto;
  }

  .dw-about-floating-card-two {
    left: auto;
    right: 0;
    bottom: 20%;
  }

  .dw-about-watermark {
    top: 57%;
    font-size: 74px;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px rgba(var(--theme-color-dark-rgb), 0.08);
  }

  .dw-about-bg-line {
    bottom: 18px;
    opacity: 0.35;
  }

  .dw-about-visual-wrap::before {
    top: 18%;
    right: 4%;
    width: 220px;
    height: 220px;
  }

  .dw-about-visual-wrap::after {
    left: 0;
    bottom: 12%;
    width: 190px;
    height: 190px;
  }
}


/* ================================
   375px / Mobile Small
================================ */
@media (max-width: 375px) {
  .dw-about-showcase-section {
    padding-top: 60px;
    padding-bottom: 50px;
  }

  .dw-about-content .ks-section-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .dw-about-content .text {
    font-size: 15px;
  }

  .dw-about-proof-item {
    padding: 16px;
  }

  .dw-about-proof-item p {
    font-size: var(--body-font-size-small);
  }

  .dw-about-visual-wrap {
    min-height: 480px;
  }

  .dw-about-main-mockup {
    width: 82%;
    right: -6px;
  }

  .dw-about-secondary-mockup {
    width: -100%;
    left: -6px;
    bottom: -108px;
  }

  .dw-about-tool-card {
    width: 45%;
    right: -117px;
    top: 118%;
  }

  .dw-about-pattern {
    width: 66%;
    bottom: 65px;
  }

  .dw-about-floating-card {
    font-size: 11px;
    padding: 8px 10px;
  }

  .dw-about-floating-card-one {
    top: 23%;
    left: 0;
  }

  .dw-about-floating-card-two {
    right: 0;
    bottom: 19%;
  }

  .dw-about-watermark {
    font-size: 64px;
    letter-spacing: 1px;
  }
}

/* ================================
   Home About - Clean Launch Layout
================================ */

.dw-about-showcase-section {
  position: relative;
  padding: 86px 0 92px;
  overflow: hidden;
  border-top: 1px solid rgba(var(--theme-color-dark-rgb), 0.10);
  background:
    radial-gradient(circle at 66% 31%, rgba(var(--theme-color-dark-rgb), 0.035), transparent 28%),
    radial-gradient(circle at 86% 58%, rgba(var(--theme-color-dark-rgb), 0.025), transparent 24%),
    var(--theme-color-white);
}

.dw-about-showcase-section .container-1450 {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.dw-about-modern-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(340px, 0.85fr) minmax(250px, 0.58fr);
  align-items: center;
  gap: clamp(28px, 3.4vw, 62px);
}

.dw-about-content {
  max-width: 620px;
}

.dw-about-content .ks-section-subtitle.dw-about-eyebrow {
  display: block;
  margin-bottom: 28px;
  color: var(--theme-color1);
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1;

  letter-spacing: -0.035em;
  text-transform: none;
}

.dw-about-content .ks-section-subtitle.dw-about-eyebrow::before,
.dw-about-content .ks-section-subtitle.dw-about-eyebrow i {
  display: none;
}

.dw-about-content .ks-section-title.dw-about-title {
  margin-bottom: 18px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 0.98;

  letter-spacing: -0.065em;
}

.dw-about-title span {
  display: inline-block;
  margin-right: 0;
  color: var(--theme-color1);
  white-space: nowrap;
}

.dw-about-lead {
  margin: 0 0 24px;
  color: var(--theme-color1);
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.dw-about-content .text {
  max-width: 590px;
  margin-bottom: 38px;
  color: rgba(var(--theme-color-dark-rgb), 0.84);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 600;
}

.dw-about-content .text p {
  margin-bottom: 18px;
}

.dw-about-content .text p:last-child {
  margin-bottom: 0;
}

.dw-about-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 38px;
  border-radius: 999px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%);
  box-shadow: 0 22px 52px rgba(var(--theme-color-dark-rgb), 0.16);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.dw-about-more-btn i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.dw-about-more-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-4px);
  box-shadow: 0 28px 66px rgba(var(--theme-color-dark-rgb), 0.22);
}

.dw-about-more-btn:hover i {
  transform: translateX(4px);
}

.dw-about-visual-wrap {
  position: relative;
  min-height: 590px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.dw-about-visual-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 96%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--theme-color-dark-rgb), 0.08), transparent 68%);
  filter: blur(14px);
  transform: translateX(-50%);
  z-index: -1;
}

.dw-about-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 13% 9% 11%;
  border-radius: 44% 56% 58% 42%;
  background: rgba(var(--theme-color-dark-rgb), 0.035);
  filter: blur(36px);
  z-index: -2;
}

.dw-about-rocket-img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 30px 34px rgba(var(--theme-color-dark-rgb), 0.18));
  animation: dwAboutRocketFloat 5.8s ease-in-out infinite;
}

.dw-about-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  color: var(--theme-color1);
  opacity: 0.7;
  pointer-events: none;
}

.dw-about-spark::before,
.dw-about-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.dw-about-spark::before {
  width: 100%;
  height: 2px;
}

.dw-about-spark::after {
  width: 2px;
  height: 100%;
}

.dw-about-spark-one {
  left: 10%;
  top: 35%;
  width: 34px;
  height: 34px;
}

.dw-about-spark-two {
  right: 10%;
  top: 26%;
  width: 28px;
  height: 28px;
}

.dw-about-spark-three {
  left: 23%;
  bottom: 24%;
  width: 24px;
  height: 24px;
}

.dw-about-spark-four {
  right: 12%;
  bottom: 33%;
  width: 14px;
  height: 14px;
}

.dw-about-side-card {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.10);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--theme-color-white-rgb), 0.96), rgba(var(--theme-color-white-rgb), 0.84)),
    var(--theme-color-white);
  box-shadow: 0 20px 52px rgba(var(--theme-color-dark-rgb), 0.10);
}

.dw-about-side-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.dw-about-side-heading i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  border-radius: 50%;
  color: var(--theme-color1);
  background: rgba(var(--theme-color-dark-rgb), 0.045);
  font-size: 21px;
}

.dw-about-side-heading h4 {
  margin: 0;
  color: var(--theme-color1);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dw-about-side-item p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.82);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 600;
}

.dw-about-side-divider {
  height: 1px;
  margin: 26px 0;
  background: rgba(var(--theme-color-dark-rgb), 0.10);
}

@keyframes dwAboutRocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@media (max-width: 1199px) {
  .dw-about-modern-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dw-about-side-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 28px;
  }

  .dw-about-side-divider {
    width: 1px;
    height: 100%;
    margin: 0;
  }

  .dw-about-visual-wrap {
    min-height: 540px;
  }
}

@media (max-width: 991px) {
  .dw-about-showcase-section {
    padding: 78px 0 82px;
  }

  .dw-about-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dw-about-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  .dw-about-content .text {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-about-visual-wrap {
    min-height: 500px;
  }

  .dw-about-rocket-img {
    width: min(86%, 470px);
  }
}

@media (max-width: 767px) {
  .dw-about-showcase-section {
    padding: 68px 0 72px;
  }

  .dw-about-content {
    text-align: left;
  }

  .dw-about-content .ks-section-subtitle.dw-about-eyebrow {
    margin-bottom: 20px;
  }

  .dw-about-content .text {
    font-size: 16px;
  }

  .dw-about-more-btn {
    width: 100%;
    min-height: 60px;
    padding: 0 24px;
  }

  .dw-about-visual-wrap {
    min-height: 430px;
  }

  .dw-about-side-card {
    display: block;
    padding: 24px 22px;
  }

  .dw-about-side-divider {
    width: auto;
    height: 1px;
    margin: 24px 0;
  }
}

@media (max-width: 425px) {
  .dw-about-visual-wrap {
    min-height: 360px;
  }

  .dw-about-rocket-img {
    width: min(94%, 380px);
  }

}

/*** 

====================================================================
    Contact Section
====================================================================

***/
@media (max-width: 767.98px) {
  .ks-contact-info {
    flex-wrap: wrap;
  }
}

.ks-contact-info a {
  font-size: 16px;
  line-height: 1.87;
  font-weight: 500;
  display: block;
  color: var(--theme-color-white);
}

@media (max-width: 1399.98px) {
  .ks-contact-info a {
    font-size: 15px;
  }
}

.ks-contact-info span {
  margin-bottom: 5px;
}

.ks-contact-info-icon {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin-right: 35px;
  flex: 0 0 auto;
  text-align: center;
  background-color: var(--theme-color1);
  box-shadow: 0 8px 4px 0 rgba(0, 0, 0, 0.02);
}

.ks-contact-left p {
  padding-bottom: 30px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ks-contact-form {
  padding: 75px 60px 60px 60px;
  margin-left: 80px;
  margin-bottom: -60px;
  border-radius: 50px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--theme-color-white);
}

@media (max-width: 1199.98px) {
  .ks-contact-form {
    margin-left: 0;
    padding: 45px 30px 30px 30px;
  }
}

@media (max-width: 991.98px) {
  .ks-contact-form {
    margin-top: 50px;
    padding: 75px 60px 60px 60px;
    margin-left: 60px;
  }
}

@media (max-width: 767.98px) {
  .ks-contact-form {
    margin-top: 50px;
    padding: 55px 20px 50px 20px;
    margin-left: 0px;
  }
}

.ks-contact-form p {
  color: var(--theme-color-dark);
}

.ks-contact-input-box input {
  height: 56px;
  width: 100%;
  padding: 0 40px;
  line-height: 56px;
  border-radius: 300px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid transparent;
  background-color: var(--gray-color);
}

.ks-contact-input-box input:focus {
  border-color: var(--theme-color1);
}

.ks-contact-input-box input::placeholder {
  font-weight: 500;
  font-size: 14px;
}

.ks-contact-textarea-box textarea {
  height: 135px;
  width: 100%;
  padding: 0 40px 20px 40px;
  line-height: 56px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid transparent;
  background-color: var(--gray-color);
}

.ks-contact-textarea-box textarea:focus {
  border-color: var(--theme-color1);
}

.ks-contact-textarea-box textarea::placeholder {
  font-weight: 500;
  font-size: 14px;
}

.ks-contact-shape-1 {
  width: 190px !important;
  position: absolute;
  top: -15%;
  left: -9%;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .ks-contact-shape-1 {
    transform: scale(0.7);
    left: -13%;
  }
}

@media (max-width: 991.98px) {
  .ks-contact-shape-1 {
    transform: scale(1);
    left: -10%;
  }
}

@media (max-width: 767.98px) {
  .ks-contact-shape-1 {
    display: none;
  }
}

.ks-contact-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .ks-contact-shape-2 {
    display: none;
  }
}

.ks-contact-shape-3 {
  position: absolute;
  bottom: 11%;
  right: 10%;
  z-index: 2;
}

@media only screen and (max-width: 1699px) {
  .ks-contact-shape-3 {
    right: 2%;
  }
}

@media only screen and (max-width: 1400px) {
  .ks-contact-shape-3 {
    right: -3%;
  }
}

@media (max-width: 1399.98px) {
  .ks-contact-shape-3 {
    right: -3%;
  }
}

@media (max-width: 1399.98px) {
  .ks-contact-shape-3 {
    display: none;
  }
}

.ks-contact-shape-4 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: overlay;
}

.ks-contact-shape-5 {
  position: absolute;
  right: 0;
  bottom: -25px;
  z-index: -1;
}

.ks-contact-form-title {
  font-weight: 700;
  font-size: 24px;
}

.ks-contact-style-2 .ks-contact-info a {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--black4-color);
  font-family: var(--heading-font-family);
}

@media (max-width: 1199.98px) {
  .ks-contact-style-2 .ks-contact-info a {
    font-size: 18px;
  }
}

@media (max-width: 1199.98px) {
  .ks-contact-style-2 .ks-contact-info-icon {
    width: 60px;
    height: 60px;
    line-height: 56px;
    margin-right: 20px;
  }
}

@media (max-width: 1199.98px) {
  .ks-contact-style-2 .ks-contact-info-icon svg {
    width: 27px;
  }
}

.ks-contact-style-2 .ks-contact-left p {
  border: none;
  padding-bottom: 0;
  margin-bottom: 38px;
}

@media (max-width: 1199.98px) {
  .ks-contact-style-2 .ks-contact-left p br {
    display: none;
  }
}

.ks-contact-style-2 .ks-contact-form {
  padding: 50px 45px;
  border-radius: 5px;
  margin-left: 0;
  margin-bottom: 0;
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 991.98px) {
  .ks-contact-style-2 .ks-contact-form {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .ks-contact-style-2 .ks-contact-form {
    padding: 40px 20px;
  }
}

.ks-contact-style-2 .ks-contact-form .contact__select .nice-select {
  font-weight: 500;
  font-size: 16px;
  color: #696969;
  width: 100%;
  height: 54px;
  padding: 0 25px 0 25px;
  line-height: 54px;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #e4e4e4;
  background-color: transparent;
}

.ks-contact-style-2 .ks-contact-form .contact__select .nice-select.open {
  border-color: var(--theme-color1);
}

.ks-contact-style-2 .ks-contact-form-wrap {
  margin-left: 24px;
  border-radius: 5px;
  background: var(--gradient-1);
  padding: 1px;
}

@media (max-width: 991.98px) {
  .ks-contact-style-2 .ks-contact-form-wrap {
    margin-top: 90px;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .ks-contact-style-2 .ks-contact-form-wrap {
    margin-top: 50px;
  }
}

.ks-contact-style-2 .ks-contact-input-box {
  position: relative;
}

.ks-contact-style-2 .ks-contact-input-box input {
  font-size: 16px;
  color: #696969;
  height: 54px;
  padding: 0 50px 0 25px;
  line-height: 54px;
  border-radius: 5px;
  border: 1px solid #e4e4e4;
  background-color: transparent;
}

.ks-contact-style-2 .ks-contact-input-box input::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #696969;
}

.ks-contact-style-2 .ks-contact-input-box input:focus {
  border-color: var(--theme-color1);
}

.ks-contact-style-2 .ks-contact-input-box .input-icon {
  position: absolute;
  top: 50%;
  right: 25px;
  line-height: 0.5;
  transform: translateY(-50%);
}

.ks-contact-style-2 .ks-contact-textarea-box textarea {
  font-size: 16px;
  color: #696969;
  height: 125px;
  padding: 0 25px 20px 25px;
  line-height: 54px;
  border-radius: 5px;
  border: 1px solid #e4e4e4;
  background-color: transparent;
}

.ks-contact-style-2 .ks-contact-textarea-box textarea::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #696969;
}

.ks-contact-style-2 .ks-contact-textarea-box textarea:focus {
  border-color: var(--theme-color1);
}

.ks-contact-style-2 .ks-contact-shape-1 {
  position: absolute;
  top: -12.5%;
  left: -3%;
}

.contact-form-home4 {
  background-color: var(--theme-color-white);
  backdrop-filter: blur(25px);
  border-radius: 50px;
  max-width: 645px;
  padding: 60px;
}

@media (max-width: 575.98px) {
  .contact-form-home4 {
    padding: 50px 40px;
  }
}

.contact-form-home4 .title {
  color: var(--theme-color-dark3);
  font-family: var(--heading-font-family);
  font-style: normal;
  font-size: clamp(20px, 3.75vw, 40px);
  line-height: 1;
  max-width: 80%;
}

.contact-form-home4 .form-control {
  background-color: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  height: 60px;
  padding-left: 20px;
}

.contact-form-home4 textarea {
  background-color: var(--theme-color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding-left: 20px;
}

.contact-form-home4 textarea.form-control {
  height: auto;
}


.header-style-eight .outer-box .mobile-nav-toggler span {
  background-color: var(--theme-color-dark);
  display: block;
  height: 2px;
  transition: 0.3s;
  width: 25px;
}

.ks-cta-shape-2 {
  width: 190px;
  position: absolute;
  top: -10%;
  z-index: -1;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 0px 45px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 426px) {
  .auto-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.ks-btn-black.yellow-bg span {
  color: var(--theme-color-white) !important;
}

.ks-btn-black.yellow-bg svg {
  color: var(--theme-color-white) !important;
}

/* ================================
   DelosWeb Industry Characters
================================ */

.dw-industry-characters-section {
  position: relative;
  padding: 110px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 12%, rgba(var(--theme-color1-rgb), 0.12) 0 0, transparent 250px),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
}

.dw-industry-characters-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -140px;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.08);
  pointer-events: none;
}

.dw-industry-characters-heading {
  max-width: 980px;
  margin: 0 auto 46px;
  position: relative;
  z-index: 2;
}

.dw-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dw-industry-characters-heading p {
  max-width: 870px;
  margin: 0 auto;
  color: #5f6b86;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-industry-characters-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 20px;
}

.dw-character-card {
  position: relative;
  min-height: 250px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(7, 18, 79, 0.08);
  box-shadow: 0 18px 45px rgba(7, 18, 79, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dw-character-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.8) 0 0, transparent 110px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
  z-index: 1;
}

.dw-character-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -56px;
  bottom: -56px;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.12);
  z-index: 1;
  transition: transform 0.35s ease;
}

.dw-card-warm {
  background: linear-gradient(135deg, #fff8ef 0%, var(--theme-color-white) 100%);
}

.dw-card-blue {
  background: linear-gradient(135deg, #eef7ff 0%, var(--theme-color-white) 100%);
}

.dw-card-pink {
  background: linear-gradient(135deg, #fff1f7 0%, var(--theme-color-white) 100%);
}

.dw-card-cream {
  background: linear-gradient(135deg, #fff8e9 0%, var(--theme-color-white) 100%);
}

.dw-card-light {
  background: linear-gradient(135deg, #f0f7ff 0%, var(--theme-color-white) 100%);
}

.dw-character-link {
  position: relative;
  z-index: 3;
  min-height: 250px;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.dw-character-copy {
  width: 58%;
  padding: 24px 12px 24px 22px;
  position: relative;
  z-index: 4;
}

.dw-character-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 26px;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(var(--theme-color1-rgb), 0.12);
  color: var(--theme-color-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dw-character-copy h3 {
  color: var(--theme-color-dark);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.dw-character-copy p {
  color: #5f6b86;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  margin: 0;
}

.dw-character-image {
  position: absolute;
  right: -8px;
  bottom: -2px;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.dw-character-image img {
  max-width: 100%;
  max-height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(7, 18, 79, 0.16));
  transform: translateY(8px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.dw-character-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--theme-color1-rgb), 0.38);
  box-shadow: 0 28px 70px rgba(7, 18, 79, 0.14);
}

.dw-character-card:hover::after {
  transform: scale(1.25);
}

.dw-character-card:hover .dw-character-copy h3 {
  color: var(--theme-color-yellow);
}

.dw-character-card:hover .dw-character-image img {
  transform: translateY(-4px) scale(1.035);
  filter: drop-shadow(0 26px 30px rgba(7, 18, 79, 0.2));
}

/* subtle floating animation */
.dw-character-card:nth-child(1) .dw-character-image img {
  animation: dwFloatCharacter 5.8s ease-in-out infinite;
}

.dw-character-card:nth-child(2) .dw-character-image img {
  animation: dwFloatCharacter 6.2s ease-in-out infinite;
}

.dw-character-card:nth-child(3) .dw-character-image img {
  animation: dwFloatCharacter 5.6s ease-in-out infinite;
}

.dw-character-card:nth-child(4) .dw-character-image img {
  animation: dwFloatCharacter 6.5s ease-in-out infinite;
}

.dw-character-card:nth-child(5) .dw-character-image img {
  animation: dwFloatCharacter 5.9s ease-in-out infinite;
}

@keyframes dwFloatCharacter {

  0%,
  100% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* responsive */
@media (max-width: 1399px) {

  .dw-industries-grid,
  .dw-industry-characters-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 991px) {
  .dw-industry-characters-section {
    padding: 85px 0 75px;
  }

  .dw-industry-characters-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

}

@media (max-width: 575px) {
  .dw-industry-characters-grid {
    grid-template-columns: 1fr;
  }

  .dw-character-card,
  .dw-character-link {
    min-height: 245px;
  }

  .dw-character-copy {
    width: 62%;
    padding: 24px 12px 24px 20px;
  }

  .dw-character-copy h3 {
    font-size: 19px;
  }

  .dw-character-image {
    width: 45%;
    right: -4px;
  }

  .dw-character-image img {
    max-height: 220px;
  }
}

/* ================================
   DelosWeb Who We Serve Dark Slider
================================ */

.dw-who-serve-section {
  position: relative;
  padding: 105px 0 195px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 100%, rgba(47, 197, 255, 0.17) 0 0, transparent 330px),
    radial-gradient(circle at 10% 16%, rgba(var(--theme-color1-rgb), 0.15) 0 0, transparent 285px),
    radial-gradient(circle at 92% 22%, rgba(47, 197, 255, 0.11) 0 0, transparent 310px),
    linear-gradient(180deg, #000038 0%, #050b2a 55%, #000038 100%);
}

.dw-who-serve-section::before,
.dw-who-serve-section::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.15);
  pointer-events: none;
  z-index: 1;
}

.dw-who-serve-section::before {
  left: -230px;
  top: 70px;
  box-shadow:
    0 0 0 18px rgba(var(--theme-color1-rgb), 0.025),
    0 0 0 36px rgba(var(--theme-color1-rgb), 0.02),
    0 0 0 54px rgba(var(--theme-color1-rgb), 0.015);
}

.dw-who-serve-section::after {
  right: -230px;
  bottom: 120px;
  box-shadow:
    0 0 0 18px rgba(var(--theme-color1-rgb), 0.025),
    0 0 0 36px rgba(var(--theme-color1-rgb), 0.02),
    0 0 0 54px rgba(var(--theme-color1-rgb), 0.015);
}

.dw-who-serve-section .auto-container {
  position: relative;
  z-index: 4;
}

/* Heading */
.dw-who-serve-heading {
  position: relative;
  z-index: 5;
  max-width: 920px;
  margin: 0 auto 64px;
}

.dw-who-serve-heading .ks-section-subtitle {
display: block;
    color: #43b7ff !important;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-who-serve-heading h2 {
  color: var(--theme-color-white);
  font-size: var(--h2-font-size);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-shadow: 0 0 34px rgba(0, 122, 255, 0.24);
}

.dw-who-serve-heading h2 span {
  display: block;
}

.dw-who-serve-heading p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-who-serve-main-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 30px;
  border-radius: 10px;
  color: #2fc5ff;
  border: 1px solid rgba(47, 197, 255, 0.55);
  background: rgba(47, 197, 255, 0.04);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 18px 40px rgba(0, 104, 255, 0.12);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.dw-who-serve-main-btn:hover {
  color: var(--theme-color-white);
  background: linear-gradient(135deg, #0068ff 0%, #1dbfff 100%);
  border-color: rgba(47, 197, 255, 0.9);
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(0, 104, 255, 0.28);
}

/* Slider */
.dw-who-serve-slider {
  position: relative;
  z-index: 5;
  padding: 0 66px 12px;
}

.dw-who-serve-viewport {
  overflow: hidden;
  padding: 42px 0 20px;
}

.dw-who-serve-track {
  --dw-card-gap: 28px;
  display: flex;
  align-items: stretch;
  gap: var(--dw-card-gap);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* 3 visible cards on desktop */
.dw-who-serve-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 3);
  min-height: 410px;
  padding-top: 38px;
  opacity: 0;
  transform: translateY(24px);
  animation: dwWhoServeReveal 0.8s ease forwards;
}

.dw-who-serve-card:nth-child(1) {
  animation-delay: 0.05s;
}

.dw-who-serve-card:nth-child(2) {
  animation-delay: 0.14s;
}

.dw-who-serve-card:nth-child(3) {
  animation-delay: 0.23s;
}

.dw-who-serve-card:nth-child(4) {
  animation-delay: 0.32s;
}

.dw-who-serve-card:nth-child(5) {
  animation-delay: 0.41s;
}

.dw-who-serve-card a {
  position: relative;
  min-height: 365px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px 28px;
  color: inherit;
  text-decoration: none;
  overflow: visible;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 18, 52, 0.72);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.dw-who-serve-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 26%, rgba(47, 197, 255, 0.14), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(47, 197, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.dw-who-serve-card a::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, #2fc5ff, transparent);
  opacity: 0.75;
}

/* Top icon */
.dw-who-serve-icon {
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 8;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #4285b5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b143b;
  border: 1px solid #4285b5;
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(47, 197, 255, 0.045);
  font-size: 30px;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Image circle */
.dw-who-serve-image {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px auto 16px;
  border-radius: 50%;
  border: 0px solid rgba(var(--theme-color1-rgb), 0.8);
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 197, 255, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.025);
  overflow: visible;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.dw-who-serve-image img {
  display: block;
  width: auto;
  max-width: 98%;
  max-height: 235px;
  object-fit: contain;
  transform: translateY(-10px);
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.34));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* Individual image tuning */
.dw-who-serve-card:nth-child(1) .dw-who-serve-image img,
.dw-card-contractors .dw-who-serve-image img {
  max-height: 245px;
  transform: translateY(-16px);
}

.dw-who-serve-card:nth-child(2) .dw-who-serve-image img,
.dw-card-home .dw-who-serve-image img {
  max-height: 238px;
  transform: translateY(-10px);
}

.dw-who-serve-card:nth-child(3) .dw-who-serve-image img,
.dw-card-salon .dw-who-serve-image img {
  max-height: 240px;
  transform: translateY(-8px);
}

.dw-who-serve-card:nth-child(4) .dw-who-serve-image img,
.dw-card-business .dw-who-serve-image img {
  max-height: 235px;
  transform: translateY(-5px);
}

.dw-who-serve-card:nth-child(5) .dw-who-serve-image img {
  max-height: 238px;
  transform: translateY(-10px);
}

/* Text */
.dw-who-serve-copy {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: auto;
}

.dw-who-serve-copy h3 {
  color: var(--theme-color-white);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.dw-who-serve-copy p {
  min-height: 45px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 500;
  margin: 0 0 20px;
}

.dw-who-serve-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #2fc5ff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.dw-who-serve-learn i {
  transition: transform 0.3s ease;
}

/* Arrows */
.dw-who-serve-arrow {
  position: absolute;
  top: 54%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(47, 197, 255, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(11, 20, 59, 0.92);
  color: #2fc5ff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.25),
    0 0 0 8px rgba(47, 197, 255, 0.04);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.dw-who-serve-arrow-prev {
  left: 0;
}

.dw-who-serve-arrow-next {
  right: 0;
}

.dw-who-serve-arrow:hover {
  color: var(--theme-color-white);
  background: linear-gradient(135deg, #0068ff 0%, #1dbfff 100%);
  border-color: rgba(47, 197, 255, 0.9);
  box-shadow:
    0 22px 48px rgba(0, 104, 255, 0.32),
    0 0 0 8px rgba(47, 197, 255, 0.08);
}

.dw-who-serve-arrow-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.dw-who-serve-arrow-next:hover {
  transform: translateY(-50%) translateX(4px);
}

.dw-who-serve-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Hover */
.dw-who-serve-card:hover a {
  transform: translateY(-12px);
  border-color: rgba(47, 197, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(47, 197, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(12, 28, 76, 0.78);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    0 0 48px rgba(0, 104, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dw-who-serve-card:hover a::before {
  opacity: 1;
}

.dw-who-serve-card:hover .dw-who-serve-icon {
  color: var(--theme-color-white);
  background: linear-gradient(135deg, #4285b5,#2db8ff);
  box-shadow:
    0 20px 38px rgba(0, 104, 255, 0.36),
    0 0 0 8px rgba(47, 197, 255, 0.09);
  transform: translateX(-50%) translateY(-4px) scale(1.04);
}

.dw-who-serve-card:hover .dw-who-serve-image {
  border-color: #2fc5ff;
  box-shadow:
    0 0 0 7px rgba(47, 197, 255, 0.08),
    0 0 45px rgba(47, 197, 255, 0.18);
  transform: scale(1.025);
}

.dw-who-serve-card:hover .dw-who-serve-image img {
  transform: translateY(-18px) scale(1.045);
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.42));
}

.dw-who-serve-card:hover .dw-who-serve-learn {
  color: var(--theme-color-white);
}

.dw-who-serve-card:hover .dw-who-serve-learn i {
  transform: translateX(6px);
}

/* ================================
   CUSTOM FLOATING IMAGES AREA
   (reemplaza cohete y nubes)
================================ */

.dw-who-serve-custom-visuals {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  z-index: 7;
  pointer-events: none;
}

.dw-who-serve-floating-img {
  position: absolute;
  display: block;
  width: auto;

  height: auto;
  pointer-events: none;
  user-select: none;
}

/* Posiciones de ejemplo */
.dw-visual-left {
  width: 100vw;
  max-width: none;
  height: 253px;
  left: 0;
  right: 0;
  bottom: -168px;
  object-fit: cover;
  object-position: center;
}

.dw-visual-center {
  width: 100%;
  max-width: 215px;
  left: 50%;
  bottom: -200px;
  transform: translateX(-50%);
}

.dw-visual-right {
  right: 8%;
  bottom: 0;
}

/* Animations */
@keyframes dwWhoServeReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1399px) {
  .dw-who-serve-track {
    --dw-card-gap: 22px;
  }

  .dw-who-serve-card {
    flex-basis: calc((100% - 44px) / 3);
  }

  .dw-who-serve-image {
    width: 168px;
    height: 168px;
  }

  .dw-who-serve-image img {
    max-height: 214px;
  }

  .dw-who-serve-copy h3 {
    font-size: 18px;
  }

}

@media (max-width: 1199px) {
  .dw-who-serve-section {
    padding: 92px 0 140px;
  }

  .dw-who-serve-slider {
    padding: 0 58px 12px;
  }

  .dw-who-serve-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .dw-who-serve-floating-img:not(.dw-visual-left) {
    max-width: 210px;
  }
}

@media (max-width: 1024px) {
  .dw-who-serve-slider {
    width: 100%;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .dw-who-serve-track {
    --dw-card-gap: 18px;
  }

  .dw-who-serve-card {
    flex-basis: 100%;
  }
}

@media (max-width: 767px) {
  .dw-who-serve-section {
    padding: 74px 0 125px;
  }

  .dw-who-serve-heading {
    margin-bottom: 44px;
  }


  .dw-who-serve-main-btn {
    width: 100%;
    max-width: 300px;
  }

  .dw-who-serve-slider {
    padding: 0 46px 12px;
  }

  .dw-who-serve-track {
    --dw-card-gap: 16px;
  }

  .dw-who-serve-card {
    flex-basis: 100%;
    min-height: 390px;
  }

  .dw-who-serve-card a {
    min-height: 350px;
  }

  .dw-who-serve-arrow {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .dw-who-serve-custom-visuals {
    bottom: -10px;
  }

  .dw-who-serve-floating-img:not(.dw-visual-left) {
    max-width: 140px;
  }

  .dw-visual-left {
    width: 100vw;
    left: 0;
  }

  .dw-visual-right {
    right: 2%;
  }
}

@media (max-width: 426px) {
  .dw-who-serve-custom-visuals {
    bottom: 0;
    min-height: 120px;
  }

  .dw-visual-center {
    left: 50%;
    bottom: -100px;
    max-width: none;
    width: 132px;
    z-index: 3;
    opacity: 1;
    transform: translateX(-50%);
  }
}

@media (max-width: 376px) {
  .ks-testimonial-2-area {
    overflow: visible !important;
  }

  .ks-testimonial-2-area .ks-testi-panel {
    overflow: visible !important;
    margin-bottom: 28px !important;
  }

  .ks-testimonial-2-area .ks-testimonial-2-item-wrap.dw-video-testi-card {
    width: 100% !important;
    min-height: 0;
    aspect-ratio: 114 / 59;
    overflow: hidden;
  }

  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner {
    min-height: 0;
    height: 100% !important;
    overflow: hidden;
  }

  .ks-testimonial-2-area .ks-testimonial-2-item.dw-video-testi-inner::before {
    background-size: cover !important;
    background-position: center center;
  }

  .dw-who-serve-slider {
    padding: 0 12px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-who-serve-card {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .dw-who-serve-track,
  .dw-who-serve-card a,
  .dw-who-serve-icon,
  .dw-who-serve-image,
  .dw-who-serve-image img,
  .dw-who-serve-learn,
  .dw-who-serve-learn i {
    transition: none !important;
  }
}

/* ================================
   DelosWeb Space Hero
================================ */

.dw-space-hero-section {
  position: relative;
  min-height: clamp(580px, 78vh, 680px) !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #020814;
  isolation: isolate;
}

/* Background */
.dw-space-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dw-space-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.dw-space-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 98, 255, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(2, 8, 20, 0.78) 0%, rgba(2, 8, 20, 0.28) 44%, rgba(2, 8, 20, 0.64) 100%),
    linear-gradient(180deg, rgba(2, 8, 20, 0.38) 0%, rgba(2, 8, 20, 0.84) 100%);
}

/* Floating Rocket */
.dw-space-hero-rocket {
  position: absolute;
  left: clamp(24px, 5vw, 105px);
  top: clamp(90px, 12vh, 135px);
  width: clamp(190px, 22vw, 355px);
  z-index: 4;
  pointer-events: none;
  animation: dwRocketFloat 5.8s ease-in-out infinite;
  filter: drop-shadow(0 34px 45px rgba(0, 112, 255, 0.42));
}

.dw-space-hero-rocket img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ambient */
.dw-space-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(35px);
}

.dw-space-glow-1 {
  width: 380px;
  height: 380px;
  left: 18%;
  top: 28%;
  background: rgba(0, 102, 255, 0.18);
  animation: dwGlowPulse 6s ease-in-out infinite;
}

.dw-space-glow-2 {
  width: 300px;
  height: 300px;
  right: 18%;
  bottom: 18%;
  background: rgba(var(--theme-color1-rgb), 0.2);
  animation: dwGlowPulse 7s ease-in-out infinite reverse;
}

.dw-space-orbit {
  position: absolute;
  right: 185px;
  top: 150px;
  width: 360px;
  height: 360px;
  z-index: 2;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.18);
  border-radius: 50%;
  opacity: 0.4;
  animation: dwOrbitSpin 22s linear infinite;
}

/* Content */
.dw-space-hero-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: clamp(115px, 14vh, 180px) 0 clamp(45px, 6vh, 70px) !important;
}

.dw-space-hero-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(420px, 1.15fr) minmax(270px, 0.7fr);
  align-items: center;
  gap: 36px;
}

/* Center content */
.dw-space-hero-main {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.dw-space-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #4285b5;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dw-space-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25b7ff;
  box-shadow: 0 0 0 8px rgba(37, 183, 255, 0.14), 0 0 22px rgba(37, 183, 255, 0.8);
  animation: dwPulseDot 1.8s ease-in-out infinite;
}

.dw-space-headline {
  color: var(--theme-color-white);
  font-size: var(--h1-font-size);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 34px rgba(0, 122, 255, 0.38);
}

.dw-space-headline span {
  display: block;
    color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-space-subtext {
  max-width: 650px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

/* Buttons */
.dw-space-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dw-space-btn-primary,
.dw-space-btn-secondary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.dw-space-btn-primary {
  color: var(--theme-color-white);
  background: linear-gradient(135deg,  #4285b5 0%, #277ab6 100%);
  box-shadow: 0 20px 44px rgba(0, 104, 255, 0.28);
}

.dw-space-btn-secondary {
  color: var(--theme-color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.dw-btn-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.dw-space-btn-primary:hover,
.dw-space-btn-secondary:hover {
  color: var(--theme-color-white);
  transform: translateY(-4px);
}

.dw-space-btn-primary:hover {
  box-shadow: 0 26px 60px rgba(0, 104, 255, 0.4);
}

.dw-space-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(47, 197, 255, 0.5);
}

/* Launch Panel */
.dw-space-launch-panel {
  right: 66px;
  position: relative;
  width: 100%;
  max-width: 249px;
  margin-left: auto;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(47, 197, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(4, 21, 54, 0.88), rgba(2, 10, 28, 0.72));
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  animation: dwPanelFloat 6.2s ease-in-out infinite;
}

.dw-launch-panel-top span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dw-launch-panel-top strong {
  display: block;
  color: #2db8ff;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.dw-launch-check {
  position: absolute;
  top: 25px;
  right: 22px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #06182f;
  background: #2db8ff;
  border-radius: 50%;
  box-shadow: 0 0 30px #2db8ff;
}

.dw-launch-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.dw-launch-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-launch-list li:last-child {
  border-bottom: 0;
}

.dw-launch-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dw-launch-list strong {
  color: #2db8ff;
  font-size: 13px;
  font-weight: 900;
}

/* Bottom feature bar */
.dw-space-feature-row {
  position: relative;
  z-index: 5;
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.dw-space-feature {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(47, 197, 255, 0.18);
  background: rgba(2, 12, 33, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.dw-space-feature:hover {
  transform: translateY(-5px);
  background: rgba(7, 28, 70, 0.72);
  border-color: rgba(47, 197, 255, 0.42);
}

.dw-space-feature-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, #4285b5, rgb(39, 122, 182, 1));
  box-shadow: 0 12px 26px rgba(0, 104, 255, 0.25);
}

.dw-space-feature strong {
  display: block;
  color: var(--theme-color-white);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.dw-space-feature p {
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  margin: 0;
}

/* Animations */
@keyframes dwRocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }

  50% {
    transform: translateY(-22px) rotate(-4deg);
  }
}

@keyframes dwPanelFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes dwGlowPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes dwPulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.72);
    opacity: 0.65;
  }
}

@keyframes dwOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1399px) {
  .dw-space-hero-grid {
    grid-template-columns: minmax(180px, 0.6fr) minmax(420px, 1.2fr) minmax(245px, 0.7fr);
    gap: 28px;
  }

  .dw-space-feature-row {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 1199px) {
  .dw-space-hero-section {
    min-height: auto;
  }

  .dw-space-hero-content-wrap {
    padding: 160px 0 65px;
  }

  .dw-space-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-space-hero-side {
    display: none;
  }

  .dw-space-hero-rocket {
    opacity: 0.36;
    left: -40px;
    top: 130px;
    width: 280px;
  }

  .dw-space-subtext {
    font-size: 16px;
  }

  .dw-space-launch-panel {
    display: none;
  }

  .dw-space-feature-row {
    margin-top: 55px;
  }
}

@media (max-width: 767px) {
  .dw-space-hero-content-wrap {
    padding: 135px 0 55px;
  }

  .dw-space-hero-rocket {
    width: 210px;
    top: 110px;
    left: -58px;
    opacity: 0.28;
  }

  .dw-space-btn-primary,
  .dw-space-btn-secondary {
    width: 100%;
    min-height: 52px;
  }

  .dw-space-feature-row {
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dw-space-hero-rocket,
  .dw-space-launch-panel,
  .dw-space-glow,
  .dw-space-orbit,
  .dw-space-eyebrow-dot {
    animation: none !important;
  }
}

/* ============================= */
/* Home Expert Advice Section     */
/* ============================= */

.dw-solve-section {
  position: relative;
  padding: 72px 0 78px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 32%, rgba(var(--theme-color-dark-rgb), 0.06), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(var(--theme-color1-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, #f6faff 0%, var(--theme-color-white) 100%) !important;
}

.dw-solve-section::before,
.dw-solve-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dw-solve-section::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(var(--theme-color1-rgb), 0.07) 34.2%, transparent 35%),
    linear-gradient(155deg, transparent 0 59%, rgba(var(--theme-color1-rgb), 0.055) 59.2%, transparent 60%);
}

.dw-solve-section::after {
  left: 50%;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.10);
  filter: blur(20px);
  transform: translateX(-50%);
}

.dw-solve-section .auto-container {
  position: relative;
  z-index: 2;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.dw-solve-heading {
  max-width: 1040px !important;
  margin: 0 auto 22px !important;
}

.ks-testimonial-2-area {
  padding-bottom: 100px !important;
}

.dw-solve-heading h2 {
  max-width: 1100px !important;
  margin: 0 auto 12px !important;
  color: var(--theme-color-dark) !important;
  font-size: var(--h2-font-size) !important;
  line-height: 1.02 !important;

  letter-spacing: -0.065em !important;
  word-spacing: 0 !important;
}

.dw-solve-heading h2 span {
  display: block;
  margin-right: 0;
  color: var(--theme-color-dark) !important;
}

.dw-solve-heading p {
  max-width: 620px !important;
  margin: 0 auto !important;
  color: rgba(var(--theme-color-dark-rgb), 0.68) !important;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 700 !important;
  word-spacing: 0 !important;
}

.dw-solve-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.dw-solve-visual {
  position: relative !important;
  min-height: 0;
  padding-bottom: 0;
}

.dw-solve-image-card {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 26px !important;
  background: var(--theme-color-dark);
  box-shadow: 0 26px 70px rgba(var(--theme-color-dark-rgb), 0.18);
  cursor: pointer;
  text-align: left;
}

.dw-solve-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(var(--theme-color-dark-rgb), 0.02) 30%, rgba(var(--theme-color-dark-rgb), 0.62) 100%);
  pointer-events: none;
}

.dw-solve-image-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 26px !important;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.dw-solve-image-card:hover img {
  transform: none;
  filter: brightness(0.96) contrast(1.04);
}

.dw-solve-main-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--theme-color-dark);
  background: var(--theme-color-white);
  box-shadow:
    0 18px 44px rgba(var(--theme-color-dark-rgb), 0.24),
    0 0 0 12px rgba(var(--theme-color-white-rgb), 0.24);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.dw-solve-image-card:hover .dw-solve-main-play {
  color: var(--theme-color-white);
  background: var(--theme-color1);
  transform: translate(-50%, -50%) scale(1.07);
}

.dw-solve-video-controls {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto;
  align-items: center;
  gap: 14px;
  color: var(--theme-color-white);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.dw-solve-control-play {
  font-size: 20px;
}

.dw-solve-control-track {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(var(--theme-color-white-rgb), 0.26);
}

.dw-solve-control-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  border-radius: inherit;
  background: var(--theme-color1);
}

.dw-solve-quote-card {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -58px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(var(--theme-color-white-rgb), 0.96);
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
  box-shadow: 0 18px 46px rgba(var(--theme-color-dark-rgb), 0.12);
}

.dw-solve-quote-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color5) 100%);
  font-size: 22px;
}

.dw-solve-quote-card p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.76);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.dw-solve-quote-card strong {
  display: block;
  color: var(--theme-color-dark);
  font-weight: 900;
}

.dw-solve-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.dw-solve-item {
  position: relative !important;
  min-height: 220px !important;
  padding: 22px 22px 20px !important;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color-dark-rgb), 0.07) !important;
  border-radius: 24px !important;
  background: rgba(var(--theme-color-white-rgb), 0.95) !important;
  box-shadow: 0 22px 58px rgba(var(--theme-color-dark-rgb), 0.09) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dw-solve-item::before {
  display: none !important;
}

.dw-solve-item:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--theme-color1-rgb), 0.32) !important;
  box-shadow: 0 30px 74px rgba(var(--theme-color-dark-rgb), 0.14) !important;
}

.dw-solve-card-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--theme-color1);
  background: rgba(var(--theme-color1-rgb), 0.10);
  font-size: 29px;
}

.dw-solve-content {
  position: relative;
  z-index: 2;
}

.dw-solve-section .dw-solve-content h5 {
  margin: 0 0 10px !important;
  color: var(--theme-color-dark) !important;
  font-size: 17px !important;
  line-height: 1.16 !important;
  font-weight: 700 !important;
  letter-spacing: -0.045em !important;
}

.dw-solve-section .dw-solve-content p {
  margin: 0 !important;
  color: rgba(var(--theme-color-dark-rgb), 0.70) !important;
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 700 !important;
}

.dw-solve-number {
  position: absolute !important;
  right: 18px !important;
  bottom: 12px !important;
  color: rgba(var(--theme-color-dark-rgb), 0.10) !important;
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.dw-solve-bottom {
  margin-top: 88px !important;
  text-align: center !important;
}

.dw-solve-btn {
  min-height: 56px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 390px;
  padding: 0 30px !important;
  border-radius: 999px !important;
  color: var(--theme-color-white) !important;
  background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color1) 100%) !important;
  box-shadow: 0 20px 45px rgba(var(--theme-color1-rgb), 0.32) !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.015em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dw-solve-btn:hover {
  color: var(--theme-color-white) !important;
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(var(--theme-color1-rgb), 0.42) !important;
}

.dw-solve-bottom p {
  margin: 14px 0 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  font-weight: 800;
}

.dw-solve-bottom p i {
  color: var(--theme-color1);
  margin-right: 7px;
}

@media (max-width: 1199px) {
  .dw-solve-wrapper {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .dw-solve-visual {
    max-width: 760px;
    margin: 0 auto;
    min-height: 0;
  }

  .dw-solve-image-card {
    position: relative !important;
    inset: auto;
    height: auto;
  }

  .dw-solve-image-card img {
    height: auto !important;
  }

  .dw-solve-list {
    max-width: 760px;
    margin: 18px auto 0;
  }

  .dw-solve-quote-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 680px;
    margin: -22px auto 0;
    padding: 16px 20px;
  }

  .dw-solve-quote-card p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .dw-solve-section {
    padding: 62px 0 66px !important;
  }

  .dw-solve-list {
    grid-template-columns: 1fr !important;
    margin-top: 16px;
  }

  .dw-solve-video-controls {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: auto auto 1fr auto;
  }

  .dw-solve-video-controls span:nth-last-child(-n + 2) {
    display: none;
  }

  .dw-solve-visual {
    padding-bottom: 0;
  }

  .dw-solve-bottom {
    margin-top: 32px !important;
  }

  .dw-solve-btn {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .dw-solve-image-card img {
    height: auto !important;
  }

  .dw-solve-quote-card {
    grid-template-columns: 1fr;
    text-align: center;
    width: calc(100% - 24px);
    margin-top: -14px;
    padding: 15px 16px;
    border-radius: 16px;
  }

  .dw-solve-quote-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto;
    font-size: 18px;
  }

  .dw-solve-quote-card p {
    font-size: 13px;
    line-height: 1.42;
  }
}

/* ================================
   DelosWeb Contact Launch Section
================================ */

.dw-contact-launch-section {
  position: relative;
  padding: 80px 36px 80px;
  overflow: hidden;
  background: var(--theme-color-dark);
  isolation: isolate;
}

.dw-contact-space-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dw-contact-space-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dw-contact-space-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 45% 48%, rgba(var(--theme-color1-rgb), 0.24), transparent 28%),
    linear-gradient(90deg, rgba(var(--theme-color-dark-rgb), 0.9) 0%, rgba(var(--theme-color-dark-rgb), 0.62) 45%, rgba(var(--theme-color-dark-rgb), 0.74) 100%);
  pointer-events: none;
}

.dw-contact-launch-section .container {
  position: relative;
  z-index: 3;
}

.dw-contact-launch-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.12fr;
  gap: 70px;
  align-items: center;
}

/* Left content */
.dw-contact-launch-left {
  position: relative;
  z-index: 4;
  max-width: 460px;
}

.dw-contact-kicker {
  color: var(--theme-color1) !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-contact-kicker i {
  color: var(--theme-color1);
}

.dw-contact-title {
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}

.dw-contact-title span {
  display: inline;
    color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-contact-text {
  max-width: 360px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.dw-contact-info-list {
  max-width: 330px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dw-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  color: var(--theme-color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.dw-contact-info-item span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 14px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.55);
  background: rgba(var(--theme-color1-rgb), 0.14);
  box-shadow:
    0 0 18px rgba(var(--theme-color1-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dw-contact-info-item span i {
  font-size: 20px;
}

.dw-contact-info-item strong {
  color: var(--theme-color-white);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.dw-contact-info-item:hover {
  transform: translateX(6px);
  color: var(--theme-color1);
}

/* Rocket */
.dw-contact-rocket-wrap {
  position: absolute;
  left: 28%;
  bottom: 165px;
  z-index: 5;
  width: min(360px, 30vw);
  pointer-events: none;
  animation: dwContactRocketFloat 6s ease-in-out infinite;
}

.dw-contact-rocket-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 24px 34px rgba(var(--theme-color-dark-rgb), 0.45)) drop-shadow(0 0 34px rgba(var(--theme-color1-rgb), 0.3));
}

/* Form */
.dw-contact-form-wrap {
  right: -50px;
  position: relative;
  z-index: 4;
}

.dw-contact-form-card {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin-left: auto;
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.78);
  background:
    linear-gradient(180deg, rgba(13, 29, 74, 0.9), rgba(var(--theme-color-dark-rgb), 0.82));
  box-shadow:
    0 0 0 1px rgba(var(--theme-color1-rgb), 0.12),
    0 0 42px rgba(var(--theme-color1-rgb), 0.34),
    0 34px 70px rgba(var(--theme-color-dark-rgb), 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dw-contact-form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 28px;
  width: 110px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--theme-color-white), var(--theme-color1));
  box-shadow: 0 0 28px rgba(var(--theme-color1-rgb), 0.9);
}

.dw-contact-input-box,
.dw-contact-textarea-box {
  position: relative;
}

.dw-contact-input-box>i,
.dw-contact-textarea-box>i {
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #75aee0;
  font-size: 18px;
  pointer-events: none;
}

.dw-contact-textarea-box>i {
  top: 28px;
  transform: none;
}

.dw-contact-input-box input,
.dw-contact-input-box select,
.dw-contact-textarea-box textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 22px 0 62px;
  color: var(--theme-color-white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(26, 44, 90, 0.92), rgba(19, 34, 76, 0.9));
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(var(--theme-color-dark-rgb), 0.22);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.dw-contact-input-box input::placeholder,
.dw-contact-textarea-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.dw-contact-input-box select option {
  color: var(--theme-color-dark);
  background: var(--theme-color-white);
}

.dw-contact-textarea-box textarea {
  min-height: 105px;
  padding-top: 21px;
  resize: vertical;
}

.dw-contact-input-box input:focus,
.dw-contact-input-box select:focus,
.dw-contact-textarea-box textarea:focus {
  border-color: rgba(var(--theme-color1-rgb), 0.9);
  background:
    linear-gradient(180deg, rgba(31, 53, 108, 0.96), rgba(19, 34, 76, 0.96));
  box-shadow:
    0 0 0 3px rgba(var(--theme-color1-rgb), 0.14),
    0 0 28px rgba(var(--theme-color1-rgb), 0.2);
}

/* ================================
   Contact Service Select Fix
================================ */

.dw-contact-service-box {
  position: relative;
  z-index: 5;
}

/* Native select visible */
.dw-contact-service-box select,
.dw-contact-service-box .dw-service-select,
.dw-contact-service-box .ks-service-select {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 58px 0 62px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(26, 44, 90, 0.92), rgba(19, 34, 76, 0.9)) !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(var(--theme-color-dark-rgb), 0.22) !important;
}

.dw-contact-service-box select:focus,
.dw-contact-service-box .dw-service-select:focus,
.dw-contact-service-box .ks-service-select:focus {
  border-color: rgba(var(--theme-color1-rgb), 0.9) !important;
  box-shadow:
    0 0 0 3px rgba(var(--theme-color1-rgb), 0.14),
    0 0 28px rgba(var(--theme-color1-rgb), 0.2) !important;
}

.dw-contact-service-box select option {
  color: var(--theme-color-dark);
  background: var(--theme-color-white);
}

/* Arrow */
.dw-select-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  color: #75aee0;
  pointer-events: none;
}

.dw-select-arrow i {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  color: #75aee0 !important;
  font-size: 15px !important;
}

/* In case the template/nice-select plugin creates a custom dropdown */
.dw-contact-service-box .nice-select {
  display: block !important;
  width: 100% !important;
  height: 58px !important;
  line-height: 58px !important;
  padding-left: 62px !important;
  padding-right: 58px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(26, 44, 90, 0.92), rgba(19, 34, 76, 0.9)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(var(--theme-color-dark-rgb), 0.22) !important;
}

.dw-contact-service-box .nice-select::after {
  display: none !important;
}

.dw-contact-service-box .nice-select .list {
  width: 100%;
  color: var(--theme-color-dark);
  background: var(--theme-color-white);
  border-radius: 14px;
  overflow: hidden;
}

.dw-contact-service-box .nice-select .option {
  color: var(--theme-color-dark);
}

/* Submit button */
.dw-contact-submit-btn {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  color: var(--theme-color-white);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.7);
  border-radius: 15px;
  background:
    linear-gradient(135deg, var(--theme-color-yellow) 0%, #0e66ff 100%);
  box-shadow:
    0 20px 42px rgba(14, 102, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.dw-contact-submit-btn span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dw-contact-submit-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 24px 52px rgba(14, 102, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.dw-contact-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.4;
}

.dw-contact-privacy-note i {
  color: rgba(255, 255, 255, 0.72);
}

/* Animation */
@keyframes dwContactRocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-contact-launch-grid {
    gap: 42px;
  }

  .dw-contact-rocket-wrap {
    left: 30%;
    width: 300px;
  }

  .dw-contact-form-wrap {
    right: 0;
  }

  .dw-contact-form-card {
    padding: 32px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dw-contact-rocket-wrap {
    left: calc(45% - 180px);
    bottom: 24px;
    width: 150px;
  }
}

@media (max-width: 767px) {
  .dw-contact-launch-section {
    padding: 90px 0 80px;
  }

  .dw-contact-launch-grid {
    grid-template-columns: 1fr;
  }

  .dw-contact-launch-left {
    max-width: 100%;
    text-align: center;
  }

  .dw-contact-title {
    max-width: 620px;
    margin-inline: auto;
  }

  .dw-contact-text {
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 34px;
  }

  .dw-contact-info-list {
    margin-inline: auto;
    text-align: left;
  }

  .dw-contact-rocket-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: 280px;
    margin: -40px auto -20px;
  }

  .dw-contact-form-wrap {
    right: 0;
  }

  .dw-contact-form-wrap .contact-form {
    margin-inline: auto;
  }

  .dw-contact-form-wrap .contact-form .title {
    text-align: center;
  }

  .dw-contact-form-card {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .dw-contact-launch-section {
    padding: 75px 0 65px;
  }

  .dw-contact-text {
    font-size: 16px;
  }

  .dw-contact-info-item strong {
    font-size: 15px;
  }

  .dw-contact-form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .dw-contact-input-box input,
  .dw-contact-input-box select,
  .dw-contact-textarea-box textarea,
  .dw-contact-service-box select,
  .dw-contact-service-box .dw-service-select,
  .dw-contact-service-box .ks-service-select {
    font-size: 14px !important;
    padding-left: 54px !important;
  }

  .dw-contact-input-box>i,
  .dw-contact-textarea-box>i {
    left: 19px;
  }

  .dw-contact-submit-btn {
    min-height: 58px;
    padding: 0 20px;
    font-size: 13px;
  }

  .dw-contact-privacy-note {
    font-size: 12px;
  }
}

/* ================================
   Contact Service Select Fix
   Works with Nice Select plugin
================================ */

.dw-contact-service-box {
  position: relative;
  z-index: 20;
}

/* Keep native select hidden when Nice Select plugin is active */
.dw-contact-service-box select.ks-service-select,
.dw-contact-service-box select.dw-service-select {
  display: none !important;
}

/* Style the Nice Select generated dropdown */
.dw-contact-service-box .nice-select {
  display: block !important;
  width: 100% !important;
  height: 58px !important;
  line-height: 58px !important;
  padding-left: 62px !important;
  padding-right: 58px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(26, 44, 90, 0.92), rgba(19, 34, 76, 0.9)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(var(--theme-color-dark-rgb), 0.22) !important;
}

.dw-contact-service-box .nice-select .current {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Nice Select dropdown list */
.dw-contact-service-box .nice-select .list {
  width: 100% !important;
  max-height: 240px;
  overflow-y: auto;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.35);
  background: var(--theme-color-white);
  box-shadow: 0 20px 40px rgba(var(--theme-color-dark-rgb), 0.28);
}

.dw-contact-service-box .nice-select .option {
  color: var(--theme-color-dark) !important;
  font-size: 15px;
  font-weight: 600;
}

.dw-contact-service-box .nice-select .option:hover,
.dw-contact-service-box .nice-select .option.focus,
.dw-contact-service-box .nice-select .option.selected.focus {
  background: rgba(var(--theme-color1-rgb), 0.12) !important;
  color: var(--theme-color-dark) !important;
}

/* Hide default Nice Select arrow */
.dw-contact-service-box .nice-select::after {
  display: none !important;
}

/* Custom icon on the left */
.dw-contact-service-box>i {
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  color: #75aee0;
  font-size: 18px;
  pointer-events: none;
}

/* Custom arrow on the right */
.dw-select-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  color: #75aee0;
  pointer-events: none;
}

.dw-select-arrow i {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  color: #75aee0 !important;
  font-size: 15px !important;
}

/* ================================
   DelosWeb Process Slider Section
================================ */

.dw-process-slider-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #4285b50f 0%, #4285b50f  100%);
  overflow: hidden;
}

.dw-process-slider-header {
  max-width: 860px;
  margin: 0 auto 42px;
}

.dw-process-slider-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--theme-color1);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dw-process-slider-kicker i {
  font-style: normal;
  color: var(--theme-color1);
}

.dw-process-slider-header h2 {
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.dw-process-slider-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

/* Wrapper */
.dw-process-slider-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: 72px;
}

.dw-process-slider {
  position: relative;
}

.dw-process-slide {
  display: none;
}

.dw-process-slide.active {
  display: block;
  animation: dwProcessFadeIn 0.35s ease;
}

@keyframes dwProcessFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card */
.dw-process-card {
  position: relative;
  padding: 34px 34px 24px;
  border-radius: 26px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.18);
  background: linear-gradient(180deg, #f9fbfe 0%, #f3f7fc 100%);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.06);
}

/* Arrows */
.dw-process-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.18);
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 20px;
  z-index: 5;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(var(--theme-color-dark-rgb), 0.08);
  transition: all 0.3s ease;
}

.dw-process-arrow:hover {
  background: var(--theme-color1);
  color: var(--theme-color-white);
  border-color: var(--theme-color1);
}

.dw-process-arrow-prev {
  left: 0;
}

.dw-process-arrow-next {
  right: 0;
}

/* Top Layout */
.dw-process-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
}

.dw-process-rocket {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dw-process-rocket img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
}

.dw-process-intro h3 {
  color: var(--theme-color-dark);
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.dw-process-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

/* Badge */
.dw-process-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  color: var(--theme-color-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dw-process-badge span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  font-size: 16px;
}

.dw-process-badge.ready {
  background: linear-gradient(135deg, var(--theme-color-dark) 0%, #173a8a 100%);
}

.dw-process-badge.custom {
  background: linear-gradient(135deg, var(--theme-color-yellow) 0%, #55b7eb 100%);
}

/* Steps */
.dw-process-steps {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.ready-steps {
  grid-template-columns: repeat(5, 1fr);
}

.six-steps {
  grid-template-columns: repeat(6, 1fr);
}

.dw-process-step {
  position: relative;
  text-align: center;
}

.dw-process-step::after {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(50% + 34px);
  width: calc(100% - 18px);
  border-top: 2px dotted #7c8db4;
}

.dw-process-step:last-child::after {
  display: none;
}

.dw-step-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #000038 0%, #031b66 100%);
  color: var(--theme-color-white);
  box-shadow: 0 0 0 6px rgba(var(--theme-color1-rgb), 0.1);
  font-size: 22px;
}

.dw-step-icon.custom-icon {
  background: linear-gradient(135deg, #4285b5 0%, #4fa9dd 100%);
  color: #000038;
}

.dw-step-number {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #031b66;
  color: var(--theme-color-white);
  font-size: 11px;
}

.dw-step-number.custom-number {
  background: #4fa9dd;
  color: #0a2858;
}

.dw-process-step h4 {
  color: var(--theme-color-dark);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.dw-process-step p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.68);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* Note */
.dw-process-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ecf4fb 0%, #e6f0f9 100%);
}

.dw-process-note span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var( --theme-color-dark);
  color: var(--theme-color-white);
  font-size: 18px;
}

.dw-process-note.custom-note span {
  background: #4fa9dd;
  color: #0a2858;
}

.dw-process-note p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.78);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

.dw-process-note a {
  color: var(--theme-color-yellow);
  font-weight: 700;
  text-decoration: none;
}

/* Dots */
.dw-process-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.dw-process-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--theme-color-dark-rgb), 0.18);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dw-process-dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--theme-color1);
}

/* Bottom CTA */
.dw-process-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.dw-process-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dw-process-bottom-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--theme-color1-rgb), 0.1);
  color: var(--theme-color-yellow);
  font-size: 24px;
  flex: 0 0 62px;
}

.dw-process-bottom-left h3 {
  color: var(--theme-color-dark);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.dw-process-bottom-left p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-process-bottom-left p a {
  color: var(--theme-color-yellow);
  font-weight: 700;
  text-decoration: none;
}

.dw-process-bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid var(--theme-color1);
  border-radius: 8px;
  background: var(--theme-color1);
  color: var(--theme-color-white);
  box-shadow: 0 18px 40px rgba(var(--theme-color-dark-rgb), 0.14);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.dw-process-bottom-btn:hover {
  color: var(--theme-color1);
  background: var(--theme-color-white);
  border-color: var(--theme-color1);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1399px) {
  .dw-process-arrow-prev {
    left: 8px;
  }

  .dw-process-arrow-next {
    right: 8px;
  }
}

@media (max-width: 1199px) {
  .ready-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .six-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .dw-process-step::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .dw-process-slider-wrap {
    padding-inline: 0;
    padding-bottom: 78px;
  }

  .dw-process-arrow {
    top: auto;
    bottom: 8px;
    transform: none;
  }

  .dw-process-arrow-prev {
    left: calc(50% - 86px);
  }

  .dw-process-arrow-next {
    right: calc(50% - 86px);
  }

  .dw-process-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    margin-top: 0;
  }

  .dw-process-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-process-intro p {
    max-width: 100%;
    margin: 0 auto;
  }

  .dw-process-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-process-bottom-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .dw-process-bottom-left {
    flex-direction: column;
    text-align: center;
  }

  .dw-process-bottom-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dw-process-card {
    padding: 24px 20px;
  }

  .ready-steps,
  .six-steps {
    grid-template-columns: 1fr;
  }

  .dw-process-step {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(var(--theme-color1-rgb), 0.12);
  }

  .dw-process-arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .dw-process-arrow-prev {
    left: calc(50% - 76px);
    top: auto;
    transform: none;
  }

  .dw-process-arrow-next {
    right: calc(50% - 76px);
    top: auto;
    transform: none;
  }

  .dw-process-intro h3 {
    font-size: 30px;
  }

  .dw-process-bottom-left h3 {
    font-size: 24px;
  }

}

@media (max-width: 575px) {
  .dw-process-slider-section {
    padding: 85px 0;
  }

  .dw-process-card {
    border-radius: 20px;
  }

  .dw-process-note {
    align-items: flex-start;
  }

}

/* ============================= */
/* Home Target Light Backgrounds */
/* ============================= */

body {
  background: linear-gradient(180deg, var(--theme-color-soft-blue-bg) 0%, #eef5fc 100%) !important;
  background-color: var(--theme-color-soft-blue-bg) !important;
}

/* .dw-solution-select-section,
.dw-home-ready-sites-section,
.ks-about-3-area,
.dw-solve-section,
.ks-testimonial-2-area {
  background: linear-gradient(180deg, var(--theme-color-soft-blue-bg) 0%, #eef5fc 100%) !important;
  background-color: var(--theme-color-soft-blue-bg) !important;
} */

/* ============================= */
/* Homepage Spacing System Test  */
/* Keep this homepage-only until reviewed for other pages. */
/* ============================= */

.dw-home-section {
  padding-block: clamp(48px, 4.5vw, 80px) !important;
}

.dw-home-section-sm {
  padding-block: clamp(32px, 3.2vw, 55px) !important;
}

.dw-home-section-lg {
  padding-block: clamp(60px, 5.5vw, 90px) !important;
}

.dw-home-tight-top {
  padding-top: clamp(45px, 5vw, 70px) !important;
}

.dw-home-tight-bottom {
  padding-bottom: clamp(45px, 5vw, 70px) !important;
}

.dw-home-section > .container,
.dw-home-section > .auto-container,
.dw-home-section > .container-fluid,
.dw-home-section-sm > .container,
.dw-home-section-sm > .auto-container,
.dw-home-section-sm > .container-fluid,
.dw-home-section-lg > .container,
.dw-home-section-lg > .auto-container,
.dw-home-section-lg > .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ks-brand-area.dw-home-section-sm {
  padding-block: 0 !important;
}

.ks-brand-area.dw-home-section-sm .ks-brand-ptb-two {
  padding-block: clamp(55px, 6vw, 80px) !important;
}

.ks-brand-two-active .ks-brand-item-two {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-brand-two-active .ks-brand-item-two img {
  width: auto;
  max-width: min(100%, 190px);
  max-height: 58px;
  display: block;
  object-fit: contain;
}

.ks-blog-area.dw-home-section {
  background: transparent !important;
}

.ks-blog-area.dw-home-tight-top {
  padding-top: clamp(70px, 6vw, 92px) !important;
}

.ks-blog-area .ks-section-title-wrap {
  margin-bottom: clamp(28px, 3.5vw, 44px) !important;
}

/* Keep the three-post preview compact and proportional without clipping it. */
body.dw-home-page .ks-blog-area .row:nth-of-type(2) {
  row-gap: 24px;
}

body.dw-home-page .ks-blog-area .ks-blog-item {
  max-width: 390px;
  margin-inline: auto;
  padding: 0 18px 18px;
}

body.dw-home-page .ks-blog-area .ks-blog-thumb {
  margin-top: -72px;
  margin-bottom: 18px;
}

body.dw-home-page .ks-blog-area .ks-blog-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

body.dw-home-page .ks-blog-area .ks-blog-title {
  margin-bottom: 16px;
}

body.dw-home-page .ks-blog-area .ks-blog-meta {
  padding: 10px 14px;
}

.dw-home-blog-cta {
  margin-top: clamp(28px, 3vw, 42px);
}

.dw-home-blog-cta .ks-btn-black:focus-visible {
  outline: 3px solid var(--theme-color1);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  .dw-home-section,
  .dw-home-section-sm,
  .dw-home-section-lg {
    padding-block: clamp(55px, 12vw, 75px) !important;
  }

  .dw-home-tight-top {
    padding-top: clamp(42px, 10vw, 60px) !important;
  }

  .dw-home-tight-bottom {
    padding-bottom: clamp(42px, 10vw, 60px) !important;
  }

  .ks-brand-area.dw-home-section-sm {
    padding-block: 0 !important;
  }

  .ks-brand-area.dw-home-section-sm .ks-brand-ptb-two {
    padding-block: clamp(50px, 11vw, 68px) !important;
  }

  .ks-brand-two-active .ks-brand-item-two {
    min-height: 88px;
    padding: 0 8px;
  }

  .ks-brand-two-active .ks-brand-item-two img {
    max-width: 170px;
    max-height: 66px;
  }

  .ks-blog-area.dw-home-tight-top {
    padding-top: clamp(58px, 12vw, 72px) !important;
  }

  .ks-blog-area .ks-section-title-wrap {
    margin-bottom: 92px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  body.dw-home-page .ks-blog-area .ks-blog-item {
    padding: 0 12px 16px;
  }

  body.dw-home-page .ks-blog-area .ks-blog-thumb {
    margin-top: -56px;
  }

  body.dw-home-page .ks-blog-area .ks-blog-title {
    font-size: clamp(15px, 1.65vw, 18px);
    line-height: 1.35;
  }

  body.dw-home-page .ks-blog-area .ks-blog-meta {
    padding-inline: 8px;
  }

  body.dw-home-page .ks-blog-area .ks-blog-meta span {
    display: inline-flex;
    margin-inline: 3px;
    font-size: clamp(11px, 1.25vw, 14px);
  }
}

@media (max-width: 767px) {
  body.dw-home-page .ks-blog-area .row:nth-of-type(2) {
    row-gap: 96px;
  }

  body.dw-home-page .ks-blog-area .row [class*=col-]:not(:last-child) .ks-blog-item {
    margin-bottom: 0;
  }
}

@media (max-width: 426px) {
  .ks-brand-two-active {
    margin-inline: -4px;
  }

  .ks-brand-two-active .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ks-brand-two-active .ks-brand-item-two {
    min-height: 96px;
    width: 100%;
    padding: 0 10px;
    opacity: 0.72;
  }

  .ks-brand-two-active .ks-brand-item-two img {
    max-width: 168px;
    max-height: 74px;
  }
}

/* =========================================================
   ABOUT US DROPDOWN
========================================================= */

.main-menu .navigation > li.about-us-dropdown > ul.about-us-submenu {
  min-width: 176px;
  overflow: visible;
}

/* Cada opción del submenu */
.main-menu
  .navigation
  > li.about-us-dropdown
  > ul.about-us-submenu
  > li {
  position: relative;
  overflow: visible;
}

/* Enlaces del submenu */
.main-menu
  .navigation
  > li.about-us-dropdown
  > ul.about-us-submenu
  > li
  > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    padding-left 0.3s ease;
}

/* Hover general */
.main-menu
  .navigation
  > li.about-us-dropdown
  > ul.about-us-submenu
  > li:hover
  > a,
.main-menu
  .navigation
  > li.about-us-dropdown
  > ul.about-us-submenu
  > li:focus-within
  > a {
  color: #2d80b7;
  background-color: #f4f9ff;
  padding-left: 28px;
}

/* =========================================================
   TEXTO CORTADO CON ...
========================================================= */

.menu-item-truncated > a {
  overflow: hidden;
}

.menu-item-truncated .menu-item-label {
  display: block;
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* =========================================================
   ETIQUETA CON EL TEXTO COMPLETO
========================================================= */

.menu-item-truncated .menu-item-full-text {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  z-index: 9999;

  width: max-content;
  max-width: 290px;
  padding: 12px 17px;

  color: #000038;
  background-color: #ffffff;
  border: 1px solid rgba(45, 128, 183, 0.18);
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;

  box-shadow:
    0 15px 35px rgba(0, 0, 56, 0.16),
    0 4px 12px rgba(45, 128, 183, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-50%) translateX(10px) scale(0.96);
  transform-origin: right center;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

/* Flechita de la etiqueta */
.menu-item-truncated .menu-item-full-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;

  width: 10px;
  height: 10px;

  background-color: #ffffff;
  border-top: 1px solid rgba(45, 128, 183, 0.18);
  border-right: 1px solid rgba(45, 128, 183, 0.18);

  transform: translate(-5px, -50%) rotate(45deg);
}

/* Línea azul decorativa */
.menu-item-truncated .menu-item-full-text::after {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 5px;

  width: 3px;
  border-radius: 20px;
  background-color: #2d80b7;
}

/* Mostrar texto completo */
.menu-item-truncated:hover .menu-item-full-text,
.menu-item-truncated:focus-within .menu-item-full-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0) scale(1);
}

/* Pequeño punto azul antes del texto cuando se activa */
.menu-item-truncated > a::before {
  content: "";
  position: absolute;
  left: 15px;

  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #2d80b7;

  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.menu-item-truncated:hover > a::before,
.menu-item-truncated:focus-within > a::before {
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   MOBILE
   En mobile mostramos el nombre completo para evitar
   tooltips flotantes dentro del menú lateral.
========================================================= */

@media only screen and (max-width: 1199px) {
  .menu-item-truncated .menu-item-label {
    max-width: none;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
  }

  .menu-item-truncated .menu-item-full-text {
    display: none;
  }

  .menu-item-truncated > a {
    overflow: visible;
  }
}

/* =========================================================
   DIY vs Professional Website — homepage section
   Introduces the "tools vs experience" topic and links to
   diy-vs-professional-website.html
========================================================= */
.dw-home-diy-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--theme-color-soft-blue-bg);
}

.dw-home-diy-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  z-index: 0;
  background: var(--gradient-2);
  pointer-events: none;
}

.dw-home-diy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 70px);
}

.dw-home-diy-copy {
  max-width: 560px;
}

.dw-home-diy-eyebrow {
  color: var(--theme-color1);
}

.dw-home-diy-title {
  margin: 16px 0 20px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.dw-home-diy-text {
  margin: 0 0 26px;
  color: var(--text-color2);
  font-size: 17px;
  line-height: 1.75;
}

.dw-home-diy-points {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.dw-home-diy-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--theme-color-dark);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
}

.dw-home-diy-points li i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--theme-color1);
  font-size: 16px;
}

.dw-home-diy-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.dw-home-diy-cta-row .dw-about-more-btn:focus-visible {
  outline: 3px solid var(--theme-color1);
  outline-offset: 3px;
}

.dw-home-diy-microcopy {
  margin: 0;
  max-width: 260px;
  color: var(--text-color2);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

.dw-home-diy-media {
  position: relative;
  margin: 0;
}

.dw-home-diy-video-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--theme-color-border-light);
  background: var(--theme-color-dark);
}

.dw-home-diy-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--theme-color-dark);
}

.dw-home-diy-caption {
  margin: 16px 6px 0;
  color: var(--text-color2);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  text-align: center;
}

@media (max-width: 1199px) {
  .dw-home-diy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .dw-home-diy-copy {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .dw-home-diy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dw-home-diy-copy {
    display: contents;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  .dw-home-diy-eyebrow,
  .dw-home-diy-title,
  .dw-home-diy-text,
  .dw-home-diy-points,
  .dw-home-diy-cta-row {
    width: min(100%, 640px);
    margin-left: auto;
    margin-right: auto;
  }

  .dw-home-diy-eyebrow {
    order: 1;
    text-align: center;
  }

  .dw-home-diy-title {
    order: 2;
    margin-top: -20px;
  }

  .dw-home-diy-text {
    order: 3;
    margin-top: -18px;
    text-align: center;
  }

  .dw-home-diy-media {
    order: 4;
  }

  .dw-home-diy-points {
    order: 5;
    justify-items: center;
    max-width: 420px;
    margin-top: -6px;
    text-align: left;
  }

  .dw-home-diy-cta-row {
    order: 6;
    justify-content: center;
    margin-top: -12px;
  }

  .dw-home-diy-microcopy {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .dw-home-diy-grid {
    gap: 30px;
  }

  .dw-home-diy-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .dw-home-diy-points li {
    font-size: 14.5px;
  }

  .dw-home-diy-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .dw-home-diy-cta-row .dw-about-more-btn {
    min-height: 48px;
    justify-content: center;
  }

  .dw-home-diy-video-frame {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-home-diy-copy.ks_fade_anim,
  .dw-home-diy-media.ks_fade_anim {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   DIY VS PROFESSIONAL VIDEO SECTION
========================================================= */

.dw-home-diy-section {
  --dw-diy-blue: var(--theme-color, #2d80b7);
  --dw-diy-navy: var(--theme-color-dark, #000038);
  --dw-diy-white: var(--color-white, #ffffff);
  --dw-diy-bg: var(--theme-bg-light, #f8fbff);
  --dw-diy-text: var(--body-text-color, rgba(0, 0, 56, 0.7));
  --dw-diy-border: rgba(45, 128, 183, 0.14);
  --dw-diy-light-blue: rgba(45, 128, 183, 0.075);

  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  padding: clamp(95px, 8vw, 145px) 0;

  background:
    radial-gradient(
      circle at 80% 43%,
      rgba(45, 128, 183, 0.09),
      transparent 31%
    ),
    radial-gradient(
      circle at 7% 81%,
      rgba(45, 128, 183, 0.05),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      var(--dw-diy-white) 0%,
      #fbfdff 100%
    );
}

.dw-home-diy-section .container-1450 {
  position: relative;
  z-index: 5;

  width: min(calc(100% - 64px), 1450px);
  max-width: 1450px;
  margin-inline: auto;
}

/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.dw-home-diy-decor {
  position: absolute;
  inset: 0;
  z-index: 0;

  overflow: hidden;
  pointer-events: none;
}

.dw-home-diy-glow {
  position: absolute;

  border-radius: 50%;
  filter: blur(90px);

  animation: dwHomeDiyGlow 6s ease-in-out infinite;
}

.dw-home-diy-glow--left {
  bottom: 8%;
  left: -7%;

  width: 370px;
  height: 370px;

  background: rgba(45, 128, 183, 0.055);
}

.dw-home-diy-glow--right {
  top: 18%;
  right: 1%;

  width: 500px;
  height: 500px;

  background: rgba(45, 128, 183, 0.09);

  animation-delay: -3s;
}

.dw-home-diy-orbit {
  position: absolute;

  border: 1px solid rgba(45, 128, 183, 0.13);
  border-radius: 50%;

  animation: dwHomeDiyOrbit 70s linear infinite;
}

.dw-home-diy-orbit::after {
  content: "";
  position: absolute;

  width: 13px;
  height: 13px;

  border-radius: 50%;

  background: var(--dw-diy-blue);

  box-shadow:
    0 0 0 8px rgba(45, 128, 183, 0.055),
    0 0 20px rgba(45, 128, 183, 0.32);
}

.dw-home-diy-orbit--top {
  top: -370px;
  right: -270px;

  width: 680px;
  height: 680px;
}

.dw-home-diy-orbit--top::after {
  bottom: 17%;
  left: 13%;
}

.dw-home-diy-orbit--bottom {
  right: -190px;
  bottom: -470px;

  width: 720px;
  height: 720px;

  border-style: dashed;

  animation-duration: 85s;
  animation-direction: reverse;
}

.dw-home-diy-orbit--bottom::after {
  top: 18%;
  left: 9%;
}

.dw-home-diy-dot {
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--dw-diy-blue);

  box-shadow:
    0 0 13px rgba(45, 128, 183, 0.4);

  animation: dwHomeDiyDot 4s ease-in-out infinite;
}

.dw-home-diy-dot--one {
  top: 13%;
  left: 71%;
}

.dw-home-diy-dot--two {
  right: 6%;
  bottom: 29%;

  animation-delay: -1.3s;
}

.dw-home-diy-dot--three {
  bottom: 11%;
  left: 43%;

  animation-delay: -2.6s;
}

.dw-home-diy-grid-pattern {
  position: absolute;

  width: 135px;
  height: 110px;

  opacity: 0.24;

  background-image:
    radial-gradient(
      circle,
      var(--dw-diy-blue) 1.4px,
      transparent 1.6px
    );

  background-size: 16px 16px;
}

.dw-home-diy-grid-pattern--one {
  top: 17%;
  left: 43%;
}

.dw-home-diy-grid-pattern--two {
  right: 3%;
  bottom: 8%;
}

.dw-home-diy-vector {
  position: absolute;

  border: 1px solid rgba(45, 128, 183, 0.12);
  border-radius: 40px;
}

.dw-home-diy-vector--one {
  top: 10%;
  right: 18%;

  width: 400px;
  height: 105px;

  border-bottom: 0;
  border-left: 0;

  transform: skewX(-26deg);
}

.dw-home-diy-vector--two {
  right: 2%;
  bottom: 13%;

  width: 250px;
  height: 180px;

  border-top: 0;
  border-left: 0;
}

/* =========================================================
   MAIN GRID
========================================================= */

.dw-home-diy-grid {
  display: grid;
  grid-template-columns:
    minmax(440px, 0.86fr)
    minmax(640px, 1.14fr);

  gap: clamp(60px, 6vw, 110px);
  align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.dw-home-diy-copy {
  position: relative;
  z-index: 5;

  min-width: 0;
}

.dw-home-diy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin: 0 0 17px;

  color: var(--dw-diy-blue);

  font-family: var(--heading-font-family);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dw-home-diy-eyebrow::before {
  display: none;
}

.dw-home-diy-eyebrow-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--dw-diy-blue);

  box-shadow:
    0 0 13px rgba(45, 128, 183, 0.45);
}

.dw-home-diy-title-line {
  display: block;

  width: 45px;
  height: 3px;

  margin-bottom: 23px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--dw-diy-blue),
      rgba(45, 128, 183, 0.14)
    );
}

.dw-home-diy-title {
  max-width: 620px;
  margin: 0;

  color: var(--dw-diy-navy);

  font-family: var(--heading-font-family);
  font-size: var(--h2-font-size);
  line-height: 1.06;
  letter-spacing: -0.047em;

  text-wrap: balance;
}

.dw-home-diy-title > span {
  display: block;
}

.dw-home-diy-title strong {
  color: var(--dw-diy-blue);
  font-weight: inherit;
}

.dw-home-diy-text {
  max-width: 610px;
  margin: 24px 0 0;

  color: var(--dw-diy-text);

  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.76;
}

/* =========================================================
   FEATURE POINTS
========================================================= */

.dw-home-diy-points {
  display: grid;
  gap: 9px;

  max-width: 620px;
  margin: 30px 0 0;
  padding: 0;

  list-style: none;
}

.dw-home-diy-points li {
  position: relative;

  display: grid;
  grid-template-columns: 51px minmax(0, 1fr) 62px;
  gap: 14px;
  align-items: center;
  overflow: hidden;

  min-height: 69px;
  margin: 0;
  padding: 9px 16px 9px 10px;

  border: 1px solid rgba(45, 128, 183, 0.1);
  border-radius: 16px;

  background:
    linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.99),
      rgba(246, 250, 255, 0.97)
    );

  color: var(--dw-diy-navy);

  box-shadow:
    0 11px 29px rgba(0, 0, 56, 0.058),
    inset 0 1px 0 var(--dw-diy-white);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.dw-home-diy-points li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      transparent,
      var(--dw-diy-blue),
      transparent
    );

  opacity: 0;

  transition: opacity 0.3s ease;
}

.dw-home-diy-points li:hover {
  border-color: rgba(45, 128, 183, 0.3);

  box-shadow:
    0 17px 38px rgba(0, 0, 56, 0.09),
    0 0 24px rgba(45, 128, 183, 0.06);

  transform: translateX(7px);
}

.dw-home-diy-points li:hover::before {
  opacity: 1;
}

.dw-home-diy-point-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;

  border: 1px solid rgba(45, 128, 183, 0.13);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      var(--dw-diy-white),
      #e9f5ff
    );

  color: var(--dw-diy-blue);

  box-shadow:
    0 8px 20px rgba(45, 128, 183, 0.09);

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.dw-home-diy-point-icon svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dw-home-diy-point-icon svg circle[r=".65"] {
  fill: currentColor;
  stroke: none;
}

.dw-home-diy-points li:hover .dw-home-diy-point-icon {
  background:
    linear-gradient(
      145deg,
      var(--dw-diy-blue),
      var(--dw-diy-navy)
    );

  color: var(--dw-diy-white);

  transform: rotate(-5deg) scale(1.05);
}

.dw-home-diy-point-copy {
  display: block;
  min-width: 0;
}

.dw-home-diy-point-copy strong {
  display: block;

  color: var(--dw-diy-navy);

  font-size: var(--body-font-size-small);
  font-weight: 750;
  line-height: var(--body-line-height-small);
}

.dw-home-diy-point-copy small {
  display: block;

  margin-top: 3px;

  color: var(--dw-diy-text);

  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.dw-home-diy-point-connector {
  position: relative;

  display: block;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(45, 128, 183, 0.25),
      transparent
    );
}

.dw-home-diy-point-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--dw-diy-blue);

  transform: translateY(-50%);

  box-shadow:
    0 0 10px rgba(45, 128, 183, 0.35);
}

/* =========================================================
   CTA ROW
========================================================= */

.dw-home-diy-cta-row {
  display: flex;
  align-items: stretch;
  gap: 25px;

  max-width: 660px;
  margin-top: 29px;
}

.dw-home-diy-button {
  position: relative;

  display: inline-flex;
  flex: 0 0 auto;
  min-width: 235px;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;

  padding: 12px 14px 12px 25px;

  border: 1px solid var(--dw-diy-blue);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      var(--dw-diy-blue),
      #176ed1
    );

  color: var(--dw-diy-white);

  font-family: var(--heading-font-family);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;

  box-shadow:
    0 15px 31px rgba(45, 128, 183, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);

  transition:
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.dw-home-diy-button::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      110deg,
      transparent 25%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 75%
    );

  opacity: 0;

  transform: translateX(-125%) skewX(-18deg);

  transition:
    opacity 0.3s ease,
    transform 0.7s ease;
}

.dw-home-diy-button:hover::before {
  opacity: 0.8;

  transform: translateX(125%) skewX(-18deg);
}

.dw-home-diy-button > * {
  position: relative;
  z-index: 2;
}

.dw-home-diy-button:hover,
.dw-home-diy-button:focus-visible {
  color: var(--dw-diy-white);

  box-shadow:
    0 21px 42px rgba(45, 128, 183, 0.34),
    0 0 28px rgba(45, 128, 183, 0.16);

  transform: translateY(-4px);
}

.dw-home-diy-button:focus-visible {
  outline: 3px solid rgba(45, 128, 183, 0.25);
  outline-offset: 4px;
}

.dw-home-diy-button-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;

  font-size: 13px;

  transition: transform 0.3s ease;
}

.dw-home-diy-button:hover .dw-home-diy-button-arrow {
  transform: translateX(4px);
}

.dw-home-diy-microcopy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;

  min-width: 0;
  padding-left: 22px;

  border-left: 1px solid rgba(45, 128, 183, 0.2);
}

.dw-home-diy-microcopy-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;

  border: 1px solid rgba(45, 128, 183, 0.12);
  border-radius: 50%;

  background: var(--dw-diy-light-blue);
  color: var(--dw-diy-blue);

  font-size: var(--body-font-size-small);
}

.dw-home-diy-microcopy p {
  margin: 0;

  color: var(--dw-diy-text);

  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* =========================================================
   VIDEO MEDIA AREA
========================================================= */

.dw-home-diy-media {
  position: relative;
  z-index: 5;

  min-width: 0;
  margin: 0;
  padding-bottom: 35px;
}

.dw-home-diy-media-layer,
.dw-home-diy-media-layer-two {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(45, 128, 183, 0.14);
  border-radius: 34px;
}

.dw-home-diy-media-layer {
  top: 50px;
  right: -23px;
  bottom: 83px;
  left: -27px;

  background:
    linear-gradient(
      145deg,
      rgba(45, 128, 183, 0.07),
      rgba(45, 128, 183, 0.015)
    );

  transform: rotate(-1.4deg);
}

.dw-home-diy-media-layer-two {
  top: 88px;
  right: 22px;
  bottom: 45px;
  left: -48px;

  background: transparent;

  transform: rotate(1.2deg);
}

.dw-home-diy-browser {
  position: relative;

  overflow: hidden;

  padding: 18px 18px 20px;

  border: 1px solid rgba(45, 128, 183, 0.14);
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 250, 255, 0.98)
    );

  box-shadow:
    0 34px 78px rgba(0, 0, 56, 0.13),
    0 0 40px rgba(45, 128, 183, 0.08),
    inset 0 1px 0 var(--dw-diy-white);
}

.dw-home-diy-browser::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;

  width: 270px;
  height: 270px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(45, 128, 183, 0.13),
      transparent 68%
    );

  pointer-events: none;
}

/* Browser bar */

.dw-home-diy-browser-bar {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 48px;
  gap: 19px;
  align-items: center;

  min-height: 55px;
  padding: 0 4px 12px;
}

.dw-home-diy-browser-dots {
  display: flex;
  gap: 8px;
}

.dw-home-diy-browser-dots span {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: rgba(45, 128, 183, 0.16);
}

.dw-home-diy-browser-dots span:first-child {
  background: var(--dw-diy-blue);

  box-shadow:
    0 0 11px rgba(45, 128, 183, 0.3);
}

.dw-home-diy-browser-status {
  display: flex;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 7px 15px;

  border: 1px solid rgba(45, 128, 183, 0.09);
  border-radius: 999px;

  background: rgba(45, 128, 183, 0.055);
  color: var(--dw-diy-blue);

  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
}

.dw-home-diy-browser-play {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;

  border: 4px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transform: rotate(36deg);
  transform-origin: center;
  background:
    linear-gradient(
      145deg,
      #1a8be0,
      var(--dw-diy-blue)
    );

  color: var(--dw-diy-white);

  font-size: 11px;

  box-shadow:
    0 0 0 1px rgba(45, 128, 183, 0.17),
    0 10px 24px rgba(45, 128, 183, 0.25);

  animation: dwHomeDiyPlayPulse 3s ease-in-out infinite;
}

/* Video */

.dw-home-diy-video-frame {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 9;

  border: 8px solid var(--dw-diy-white);
  border-radius: 24px;

  background: var(--dw-diy-navy);

  box-shadow:
    0 18px 42px rgba(0, 0, 56, 0.16),
    0 0 0 1px rgba(45, 128, 183, 0.12);
}

.dw-home-diy-video {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  background: var(--dw-diy-navy);

  object-fit: cover;
}

.dw-home-diy-video:focus-visible {
  outline: 4px solid var(--dw-diy-blue);
  outline-offset: -4px;
}

/* =========================================================
   ROCKET OVER VIDEO
========================================================= */

.dw-home-diy-rocket-wrap {
  position: absolute;
  top: -72px;
  right: -64px;
  z-index: 9;

  width: clamp(145px, 13vw, 220px);

  pointer-events: none;
}

.dw-home-diy-rocket {
  position: relative;
  z-index: 4;

  display: block;
  width: 100%;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 24px 29px rgba(0, 0, 56, 0.2))
    drop-shadow(0 0 22px rgba(45, 128, 183, 0.11));

  animation: dwHomeDiyRocketFloat 5s ease-in-out infinite;
}

.dw-home-diy-rocket-glow {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 0;

  width: 155%;
  height: 155%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(45, 128, 183, 0.17),
      transparent 68%
    );

  filter: blur(20px);

  transform: translate(-50%, -50%);

  animation: dwHomeDiyRocketGlow 4s ease-in-out infinite;
}

.dw-home-diy-rocket-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;

  width: 145%;
  height: 58%;

  border: 1px dashed rgba(45, 128, 183, 0.25);
  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    rotate(-22deg);

  animation: dwHomeDiyRocketOrbit 15s linear infinite;
}

/* =========================================================
   VIDEO CAPTION
========================================================= */

.dw-home-diy-caption {
  position: relative;
  z-index: 6;

  display: grid;
  grid-template-columns: 74px 1px minmax(0, 1fr);
  gap: 22px;
  align-items: center;

  width: calc(100% - 54px);
  margin: -1px auto 0;
  padding: 21px 25px;

  border: 1px solid rgba(45, 128, 183, 0.12);
  border-radius: 0 0 23px 23px;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 249, 255, 0.98)
    );

  box-shadow:
    0 20px 42px rgba(0, 0, 56, 0.09),
    inset 0 1px 0 var(--dw-diy-white);

  color: var(--dw-diy-text);
}

.dw-home-diy-caption-icon {
  position: relative;

  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--dw-diy-white),
      #e6f3ff
    );

  color: var(--dw-diy-blue);

  font-size: var(--body-font-size-small);

  box-shadow:
    0 11px 25px rgba(45, 128, 183, 0.1);
}

.dw-home-diy-caption-icon .fa-play {
  position: absolute;

  font-size: var(--body-font-size-small);
}

.dw-home-diy-caption-divider {
  display: block;

  width: 1px;
  height: 58px;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(45, 128, 183, 0.35),
      transparent
    );
}

.dw-home-diy-caption-copy {
  display: block;
  min-width: 0;
}

.dw-home-diy-caption-copy strong {
  display: block;

  margin-bottom: 6px;

  color: var(--dw-diy-blue);

  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-small);
  font-weight: 750;
  line-height: var(--body-line-height-small);
}

.dw-home-diy-caption-copy > span {
  display: block;

  color: var(--dw-diy-text);

  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* =========================================================
   RESULT BADGE
========================================================= */

.dw-home-diy-result-badge {
  position: absolute;
  right: 30px;
  bottom: -17px;
  z-index: 8;

  display: flex;
  align-items: center;
  gap: 11px;

  max-width: 305px;
  padding: 12px 15px;

  border: 1px solid rgba(45, 128, 183, 0.14);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 15px 34px rgba(0, 0, 56, 0.09);

  backdrop-filter: blur(12px);
}

.dw-home-diy-result-badge > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      var(--dw-diy-blue),
      var(--dw-diy-navy)
    );

  color: var(--dw-diy-white);

  font-size: 14px;
}

.dw-home-diy-result-badge small {
  display: block;

  margin-bottom: 2px;

  color: var(--dw-diy-blue);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-home-diy-result-badge strong {
  display: block;

  color: var(--dw-diy-navy);

  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes dwHomeDiyGlow {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes dwHomeDiyOrbit {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes dwHomeDiyDot {
  0%,
  100% {
    opacity: 0.45;
    transform:
      translateY(0)
      scale(0.9);
  }

  50% {
    opacity: 1;
    transform:
      translateY(-10px)
      scale(1.18);
  }
}

@keyframes dwHomeDiyPlayPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(45, 128, 183, 0.14),
      0 10px 24px rgba(45, 128, 183, 0.25);

    transform: scale(0.96);
  }

  50% {
    box-shadow:
      0 0 0 13px rgba(45, 128, 183, 0),
      0 14px 29px rgba(45, 128, 183, 0.3);

    transform: scale(1.04);
  }
}

@keyframes dwHomeDiyRocketFloat {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(-3deg);
  }

  50% {
    transform:
      translateY(-13px)
      rotate(2deg);
  }
}

@keyframes dwHomeDiyRocketGlow {
  0%,
  100% {
    opacity: 0.45;
    transform:
      translate(-50%, -50%)
      scale(0.92);
  }

  50% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      scale(1.08);
  }
}

@keyframes dwHomeDiyRocketOrbit {
  from {
    transform:
      translate(-50%, -50%)
      rotate(-22deg);
  }

  to {
    transform:
      translate(-50%, -50%)
      rotate(338deg);
  }
}

/* =========================================================
   STANDARD LAPTOP
========================================================= */

@media (max-width: 1499px) {
  .dw-home-diy-section .container-1450 {
    width: min(calc(100% - 48px), 1360px);
  }

  .dw-home-diy-grid {
    grid-template-columns:
      minmax(400px, 0.82fr)
      minmax(560px, 1.18fr);

    gap: 58px;
  }

  .dw-home-diy-title {
    font-size: var(--h2-font-size);
  }

  .dw-home-diy-points li {
    min-height: 66px;
  }

  .dw-home-diy-caption {
    width: calc(100% - 40px);
  }

  .dw-home-diy-rocket-wrap {
    right: -30px;

    width: 170px;
  }
}

/* =========================================================
   SMALL LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .dw-home-diy-section .container-1450 {
    width: min(calc(100% - 40px), 1080px);
  }

  .dw-home-diy-grid {
    grid-template-columns:
      minmax(350px, 0.85fr)
      minmax(480px, 1.15fr);

    gap: 42px;
  }

  .dw-home-diy-title {
    font-size: var(--h2-font-size);
  }

  .dw-home-diy-points li {
    grid-template-columns: 49px minmax(0, 1fr);

    padding-right: 13px;
  }

  .dw-home-diy-point-connector {
    display: none;
  }

  .dw-home-diy-cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .dw-home-diy-microcopy {
    max-width: 430px;
    padding-top: 4px;
    padding-left: 0;

    border-left: 0;
  }

  .dw-home-diy-rocket-wrap {
    top: -48px;
    right: -15px;

    width: 145px;
  }

  .dw-home-diy-result-badge {
    right: 15px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .dw-home-diy-section {
    padding: 85px 0 105px;
  }

  .dw-home-diy-section .container-1450 {
    width: min(calc(100% - 32px), 900px);
  }

  .dw-home-diy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .dw-home-diy-copy {
    max-width: 760px;
    margin-inline: auto;

    text-align: center;
  }

  .dw-home-diy-eyebrow {
    justify-content: center;
  }

  .dw-home-diy-title-line {
    margin-inline: auto;
  }

  .dw-home-diy-title,
  .dw-home-diy-text,
  .dw-home-diy-points,
  .dw-home-diy-cta-row {
    margin-inline: auto;
  }

  .dw-home-diy-title {
    max-width: 720px;
  }

  .dw-home-diy-points {
    width: min(100%, 420px);
    max-width: 420px;
    justify-items: stretch;
    text-align: left;
  }

  .dw-home-diy-points li {
    width: 100%;
  }

  .dw-home-diy-cta-row {
    align-items: center;
  }

  .dw-home-diy-microcopy {
    text-align: left;
  }

  .dw-home-diy-media {
    max-width: 800px;
    margin-inline: auto;
  }

  .dw-home-diy-rocket-wrap {
    top: -58px;
    right: -10px;

    width: 160px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .dw-home-diy-section {
    padding: 70px 0 90px;
  }

  .dw-home-diy-section .container-1450 {
    width: min(calc(100% - 26px), 700px);
  }

  .dw-home-diy-title {
    font-size: var(--h2-font-size);
    line-height: 1.1;
  }

  .dw-home-diy-text {
    font-size: 15px;
  }

  .dw-home-diy-points li {
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 11px;

    min-height: 65px;
    padding: 8px 13px 8px 8px;
  }

  .dw-home-diy-point-icon {
    width: 43px;
    height: 43px;
  }

  .dw-home-diy-point-icon svg {
    width: 21px;
    height: 21px;
  }

  .dw-home-diy-point-copy strong {
    font-size: 13px;
  }

  .dw-home-diy-point-copy small {
    font-size: 9px;
  }

  .dw-home-diy-cta-row {
    width: 100%;
  }

  .dw-home-diy-button {
    width: 100%;
  }

  .dw-home-diy-microcopy {
    width: 100%;
  }

  .dw-home-diy-browser {
    padding: 11px;

    border-radius: 21px;
  }

  .dw-home-diy-browser-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;

    min-height: 46px;
  }

  .dw-home-diy-browser-status {
    justify-content: flex-start;
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .dw-home-diy-browser-play {
    display: none;
  }

  .dw-home-diy-video-frame {
    border-width: 5px;
    border-radius: 17px;
  }

  .dw-home-diy-caption {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;

    width: calc(100% - 18px);
    padding: 17px;

    border-radius: 0 0 17px 17px;
  }

  .dw-home-diy-caption-icon {
    width: 50px;
    height: 50px;

    font-size: var(--body-font-size-small);
  }

  .dw-home-diy-caption-divider {
    display: none;
  }

  .dw-home-diy-caption-copy > span {
    font-size: var(--body-font-size-small);
  }

  .dw-home-diy-media-layer,
  .dw-home-diy-media-layer-two {
    display: none;
  }

  .dw-home-diy-rocket-wrap {
    top: -45px;
    right: -5px;

    width: 115px;
  }

  .dw-home-diy-result-badge {
    position: relative;
    right: auto;
    bottom: auto;

    max-width: 100%;
    margin: 17px auto 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .dw-home-diy-title {
    font-size: var(--h2-font-size);
  }

  .dw-home-diy-title > span {
    display: inline;
  }

  .dw-home-diy-eyebrow {
    font-size: 9px;
  }

  .dw-home-diy-point-copy small {
    display: none;
  }

  .dw-home-diy-points li {
    min-height: 58px;
  }

  .dw-home-diy-button {
    min-width: 0;
    min-height: 58px;
  }

  .dw-home-diy-microcopy {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .dw-home-diy-microcopy-icon {
    width: 40px;
    height: 40px;
  }

  .dw-home-diy-browser-status span {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .dw-home-diy-caption {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .dw-home-diy-caption-icon {
    margin-inline: auto;
  }

  .dw-home-diy-rocket-wrap {
    top: -35px;

    width: 90px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .dw-home-diy-section *,
  .dw-home-diy-section *::before,
  .dw-home-diy-section *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   DELOSWEB DESKTOP DROPDOWNS
   Main header: dark dropdown
   Sticky header: white dropdown
========================================================= */

@media (min-width: 1200px) {

  /* =======================================================
     1. DROPDOWN PARENT
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown {
    position: relative !important;
  }


  /* =======================================================
     2. TOP-LEVEL DROPDOWN LINK
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > a.dw-nav-dropdown-toggle {
    position: relative;

    display: inline-flex !important;
    align-items: center;
    gap: 8px;
  }


  /*
   * Disable every arrow generated by the original template.
   * The only arrow shown will be .dw-dropdown-arrow.
   */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > a.dw-nav-dropdown-toggle::before,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > a.dw-nav-dropdown-toggle::after {
    content: none !important;
    display: none !important;
  }


  /* =======================================================
     3. SINGLE DROPDOWN ARROW
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > a.dw-nav-dropdown-toggle
  > .dw-dropdown-arrow {
    display: block;
    flex: 0 0 auto;

    width: 7px;
    height: 7px;

    margin-top: -4px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    pointer-events: none;

    transform: rotate(45deg);

    transition: transform 0.25s ease;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown:hover
  > a.dw-nav-dropdown-toggle
  > .dw-dropdown-arrow,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown:focus-within
  > a.dw-nav-dropdown-toggle
  > .dw-dropdown-arrow {
    transform:
      translateY(3px)
      rotate(225deg);
  }


  /* =======================================================
     4. DROPDOWN PANEL
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    left: 50% !important;
    right: auto !important;
    z-index: 9999 !important;

    display: block !important;

    width: 238px !important;
    min-width: 238px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 7px !important;

    list-style: none !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
      translateX(-50%)
      translateY(12px) !important;

    transform-origin: top center !important;

    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease !important;
  }


  /* Hover bridge */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu::before {
    content: "";

    position: absolute;
    top: -20px;
    left: 0;

    display: block;

    width: 100%;
    height: 20px;

    background: transparent;
  }


  /* Show dropdown */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown:hover
  > ul.dw-nav-dropdown-menu,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown:focus-within
  > ul.dw-nav-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
      translateX(-21%)
      translateY(0) !important;
  }


  /* =======================================================
     5. CONTACT DROPDOWN ALIGNMENT
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu--contact {
    right: 0 !important;
    left: auto !important;

    width: 220px !important;
    min-width: 220px !important;

    transform: translateY(12px) !important;
  }

  .main-header
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown:hover
  > ul.dw-nav-dropdown-menu--contact,
  .main-header
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown:focus-within
  > ul.dw-nav-dropdown-menu--contact {
    transform: translateY(0) !important;
  }


  /* =======================================================
     6. DROPDOWN ITEMS
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li::before,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li::after {
    content: none !important;
    display: none !important;
  }


  /* =======================================================
     7. DROPDOWN LINKS
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a {
    position: relative !important;

    display: flex !important;

    width: 100% !important;
    min-height: 47px !important;

    align-items: center !important;

    margin: 0 !important;
    padding: 13px 26px !important;

    border: 0 !important;
    border-radius: 0 !important;

    font-family: var(--body-font, "Inter", sans-serif) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: -0.01em !important;
    white-space: nowrap !important;

    box-shadow: none !important;

    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      padding-left 0.22s ease !important;
  }


  /* Remove template animations from dropdown links */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a::after {
    content: none !important;
    display: none !important;
  }


  /* Hover indicator */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 12px;

    display: block !important;

    width: 3px;
    height: 0;

    border-radius: 20px;

    background: #ffffff;

    opacity: 0;

    transform: translateY(-50%);

    transition:
      height 0.22s ease,
      opacity 0.22s ease;
  }


  /* Dropdown link hover */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:hover
  > a,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a:focus-visible {
    padding-left: 31px !important;

    background: #4285b5 !important;
    color: #ffffff !important;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:hover
  > a::before,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a:focus-visible::before {
    height: 18px;
    opacity: 1;
  }


  /* =======================================================
     8. MAIN HEADER — DARK DROPDOWN
  ======================================================= */

  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu {
    border: 1px solid rgba(66, 133, 181, 0.24) !important;

    background:
      linear-gradient(
        145deg,
        rgba(7, 18, 51, 0.99),
        rgba(3, 13, 37, 0.99)
      ) !important;

    box-shadow:
      0 24px 55px rgba(0, 0, 20, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  }

  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:last-child {
    border-bottom: 0 !important;
  }

  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a {
    background: transparent !important;
    color: #ffffff !important;
  }

  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:hover
  > a,
  .main-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a:focus-visible {
    background: #4285b5 !important;
    color: #ffffff !important;
  }


  /* =======================================================
     9. STICKY HEADER — WHITE DROPDOWN
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu {
    border: 1px solid rgba(0, 0, 56, 0.11) !important;

    background: #ffffff !important;
    background-image: none !important;

    box-shadow:
      0 20px 45px rgba(0, 0, 56, 0.14),
      0 4px 12px rgba(0, 0, 56, 0.07) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li {
    border-bottom: 1px solid rgba(0, 0, 56, 0.09) !important;

    background: #ffffff !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:last-child {
    border-bottom: 0 !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a {
    background: #ffffff !important;
    color: #000038 !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li:hover
  > a,
  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu
  > li
  > a:focus-visible {
    background: #4285b5 !important;
    color: #ffffff !important;
  }


  /* Sticky top-level dropdown links */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > a.dw-nav-dropdown-toggle {
    color: #000038 !important;
  }


  /* =======================================================
     10. TRUNCATED ITEM
  ======================================================= */

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-truncated {
    position: relative !important;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-truncated
  .menu-item-label {
    display: block;

    width: 100%;
    max-width: 175px;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-full-text {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    z-index: 10001;

    display: block;

    width: max-content;
    max-width: 280px;

    padding: 9px 13px;

    border: 1px solid rgba(66, 133, 181, 0.3);
    border-radius: 6px;

    background: rgba(3, 13, 37, 0.99);
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    box-shadow:
      0 15px 35px rgba(0, 0, 20, 0.35);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
      translateY(-50%)
      translateX(6px);

    transition:
      opacity 0.18s ease,
      visibility 0.18s ease,
      transform 0.18s ease;
  }

  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-truncated:hover
  .menu-item-full-text {
    opacity: 1;
    visibility: visible;

    transform:
      translateY(-50%)
      translateX(0);
  }


  /* Sticky tooltip */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-full-text {
    border-color: rgba(0, 0, 56, 0.12);

    background: #ffffff;
    color: #000038;

    box-shadow:
      0 15px 35px rgba(0, 0, 56, 0.14);
  }
}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 1199px) {

  /*
   * Hide the desktop arrow inside the mobile menu because
   * the original mobile navigation uses its own toggle button.
   */

  .mobile-menu .dw-dropdown-arrow {
    display: none !important;
  }

  .mobile-menu .dw-nav-dropdown-menu {
    position: static !important;

    width: 100% !important;
    min-width: 0 !important;

    transform: none !important;
  }

  .mobile-menu .menu-item-full-text,
  .main-header
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  .menu-item-full-text {
    display: none !important;
  }
}

/* =========================================================
   INNER PAGE DROPDOWN POSITION ONLY
   Does not affect index.html
========================================================= */

@media (min-width: 1200px) {

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu {
    top: calc(100% + 2px) !important;
  }

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu::before {
    top: -17px !important;
    height: 17px !important;
  }

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown:not(:hover):not(:focus-within)
  > ul.dw-nav-dropdown-menu {
    transform:
      translateX(-50%)
      translateY(0px) !important;
  }

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown:hover
  > ul.dw-nav-dropdown-menu,
  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.dw-nav-dropdown:focus-within
  > ul.dw-nav-dropdown-menu {
    transform:
      translateX(-21%)
      translateY(-17px) !important;
  }

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown
  > ul.dw-nav-dropdown-menu--contact {
    top: calc(100% + -17px) !important;

    transform:
      translateY(0px) !important;
  }

  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown:hover
  > ul.dw-nav-dropdown-menu--contact,
  .main-header.dw-inner-header
  > .container
  .main-menu
  .navigation
  > li.nav-contact-link.dw-nav-dropdown:focus-within
  > ul.dw-nav-dropdown-menu--contact {
    transform:
      translateY(0) !important;
  }
}

/* =========================================================
   STICKY HEADER DROPDOWN POSITION FIX
   Solo afecta el menú blanco que aparece al hacer scroll
========================================================= */

@media (min-width: 1200px) {

  /* El elemento que contiene el dropdown */
  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown {
    position: relative !important;
  }


  /* =======================================================
     PANEL DEL DROPDOWN DEL STICKY HEADER
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul {
    position: absolute !important;

    /*
     * Mantiene el dropdown debajo de la barra blanca,
     * evitando que quede demasiado arriba.
     */
    top: calc(100% + 20px) !important;
    bottom: auto !important;

    left: 50% !important;
    right: auto !important;

    z-index: 9999 !important;

    display: block !important;

    min-width: 220px;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(0, 0, 56, 0.1) !important;
    border-radius: 0 0 4px 4px;

    background: #ffffff !important;
    background-image: none !important;

    box-shadow:
      0 18px 40px rgba(0, 0, 56, 0.14),
      0 5px 14px rgba(0, 0, 56, 0.07) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
      translateX(-50%)
      translateY(7px) !important;

    transform-origin: top center;

    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease !important;
  }


  /* =======================================================
     PUENTE INVISIBLE ENTRE EL ENLACE Y EL DROPDOWN
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul::before {
    content: "";

    position: absolute;
    top: -22px;
    left: 0;

    display: block;

    width: 100%;
    height: 22px;

    background: transparent;
  }


  /* =======================================================
     MOSTRAR DROPDOWN
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown:hover
  > ul,
  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown:focus-within
  > ul {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
      translateX(-22%)
      translateY(0) !important;
  }


  /* =======================================================
     CONTACT US — ALINEADO A LA DERECHA
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown:last-child
  > ul {
    right: 0 !important;
    left: auto !important;

    transform: translateY(7px) !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown:last-child:hover
  > ul,
  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown:last-child:focus-within
  > ul {
    transform: translateY(0) !important;
  }


  /* =======================================================
     ELEMENTOS DEL DROPDOWN
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul
  > li {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 56, 0.09) !important;

    background: #ffffff !important;
  }

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul
  > li:last-child {
    border-bottom: 0 !important;
  }


  /* =======================================================
     ENLACES
  ======================================================= */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul
  > li
  > a {
    display: flex !important;

    width: 100% !important;
    min-height: 46px;

    align-items: center;

    margin: 0 !important;
    padding: 12px 22px !important;

    border: 0 !important;

    background: #ffffff !important;
    color: #000038 !important;

    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    font-style: normal !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    text-decoration: none !important;
    white-space: nowrap;

    transition:
      background-color 0.22s ease,
      color 0.22s ease,
      padding-left 0.22s ease;
  }


  /* Hover azul */

  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul
  > li:hover
  > a,
  .main-header
  .sticky-header
  .main-menu
  .navigation
  > li.dropdown
  > ul
  > li
  > a:focus-visible {
    padding-left: 27px !important;

    background: #4285b5 !important;
    color: #ffffff !important;
  }


  /* =======================================================
     TEXTO TRUNCADO
  ======================================================= */

  .main-header
  .sticky-header
  .menu-item-truncated {
    position: relative;
  }

  .main-header
  .sticky-header
  .menu-item-label {
    display: block;

    max-width: 175px;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-header
  .sticky-header
  .menu-item-full-text {
    display: none !important;
  }
}



/* ======================================================
   CONTRACTOR PROJECTS MARQUEE SECTION - CLEAN IMAGE FOCUS
====================================================== */

.dw-contractor-projects-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 8vw, 120px) 0 clamp(92px, 8vw, 125px);
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--theme-color-yellow-rgb), 0.06) 0%, rgba(var(--theme-color-yellow-rgb), 0) 32%),
    radial-gradient(circle at 88% 82%, rgba(var(--theme-color-dark-rgb), 0.035) 0%, rgba(var(--theme-color-dark-rgb), 0) 34%),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
}

.dw-contractor-projects-section > .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Softer watermark */
.dw-contractor-projects-section::before {
  content: "READY-TO-GO";
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--theme-color-dark-rgb), 0.04);
  font-size: clamp(70px, 11vw, 170px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 8px;
  pointer-events: none;
}

/* Section heading should stay above watermark */
.dw-contractor-projects-section .dw-section-heading {
  position: relative;
  z-index: 4;
  margin-bottom: 34px;
}

/* Marquee wrapper */
.dw-projects-marquee-wrap {
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 12px;
}

/* Remove edge fades / lights */
.dw-projects-marquee-wrap::before,
.dw-projects-marquee-wrap::after {
  display: none !important;
}

/* Marquee track */
.dw-projects-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 34px;
  width: max-content;
  animation: dwProjectsMarquee 42s linear infinite;
}

.dw-projects-marquee-wrap:hover .dw-projects-marquee-track {
  animation-play-state: paused;
}

.dw-project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 430px;
  min-width: 430px;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 34px;
  overflow: visible;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
  text-decoration: none;
  cursor: default;
  transition: all 0.4s ease;
}

/* Remove the overlay that was covering the image */
.dw-project-card::before {
  display: none !important;
}

/* Visual preview only: live links belong on the Ready-to-Go page. */
.dw-project-card::after {
  display: none !important;
}

/* Hover: only movement + image scale, no white overlay */
.dw-project-card:hover {
  transform: translateY(-10px);
  background: transparent !important;
  box-shadow: none !important;
}

/* Image area - no crop, no blue light in front */
.dw-project-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 28px;
  background: transparent !important;
  box-shadow: 0 0px 45px rgba(255, 255, 255, 0);
  transform: scale(0.96);
  transition: all 0.55s ease;
}

/* Image only grows on hover */
.dw-project-card:hover img {
  transform: scale(1);
  box-shadow: none;
}

/* Project info now goes BELOW the image */
.dw-project-info {
  position: static;
  z-index: 5;
  margin-top: 8px;
  padding: 0 12px;
  text-align: left;
  pointer-events: none;
}

/* Category pill */
.dw-project-info span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 13px;
  border-radius: 100px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color-yellow) 0%, var(--theme-color1) 100%);
  box-shadow: 0 10px 22px rgba(var(--theme-color-yellow-rgb), 0.18);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Project title below image */
.dw-project-info h3 {
  color: rgba(var(--theme-color-dark-rgb), 0);
  max-width: 100%;
  font-size: 0;
  line-height: 0;
  letter-spacing: -0.7px;
  margin: 0;
  text-shadow: none;
  transition: all 0.35s ease;
}

.dw-project-card:hover .dw-project-info h3 {
  color: var(--theme-color-yellow);
  font-size: 24px;
  line-height: 1.08;
}

/* Bottom button area */
.dw-contractor-projects-section > .container:last-child {
  padding-bottom: 0;
}

.dw-projects-bottom {
  position: relative;
  z-index: 5;
  max-width: 920px;
  margin: 55px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Animation */

.dw-projects-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 34px;
  width: max-content;
  animation: dwProjectsMarquee 42s linear infinite;
  will-change: transform;
}

.dw-projects-marquee-wrap:hover .dw-projects-marquee-track {
  animation-play-state: paused;
}

@keyframes dwProjectsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-project-card {
    width: 390px;
    min-width: 390px;
  }

  .dw-project-card img {
    height: 335px;
  }

  .dw-project-info h3 {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .dw-contractor-projects-section {
    padding: 78px 0 86px;
  }

  .dw-projects-marquee-track {
    gap: 24px;
    animation-duration: 36s;
  }

  .dw-project-card {
    width: 350px;
    min-width: 350px;
  }

  .dw-project-card img {
    height: 310px;
    border-radius: 26px;
  }

  .dw-project-info {
    margin-top: 8px;
    padding: 0 10px;
  }

  .dw-project-info h3 {
    font-size: 0;
  }
}

@media (max-width: 767px) {
  .dw-contractor-projects-section {
    padding: 66px 0 74px;
  }

  .dw-project-card {
    width: 310px;
    min-width: 310px;
  }

  .dw-project-card img {
    height: 285px;
    border-radius: 22px;
  }

  .dw-project-card::after {
    top: 18px;
    right: 18px;
    padding: 9px 13px;
    font-size: 11px;
  }

  .dw-project-info {
    margin-top: 8px;
    padding: 0 8px;
  }

  .dw-project-info h3 {
    font-size: 0;
  }
}

@media (max-width: 425px) {
  .dw-project-card {
    width: 285px;
    min-width: 285px;
  }

  .dw-project-card img {
    height: 265px;
  }

  .dw-project-info h3 {
    font-size: 0;
  }
}


/* ======================================================
   VIEW MORE PROJECTS BUTTON - PREMIUM
====================================================== */

.dw-projects-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  padding: 18px 32px !important;
  border-radius: 100px !important;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.28) !important;
  background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color3) 48%, var(--theme-color-yellow) 100%) !important;
  color: var(--theme-color-white) !important;
  box-shadow:
    0 18px 45px rgba(var(--theme-color-dark-rgb), 0.18),
    0 10px 28px rgba(var(--theme-color-yellow-rgb), 0.22);
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.dw-projects-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 28%),
    linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color3) 52%, var(--theme-color-yellow) 100%);
}

.dw-projects-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  z-index: -1;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: all 0.55s ease;
}

.dw-projects-btn:hover {
  color: var(--theme-color-white) !important;
  transform: translateY(-5px);
  box-shadow:
    0 26px 60px rgba(var(--theme-color-dark-rgb), 0.24),
    0 16px 38px rgba(var(--theme-color-yellow-rgb), 0.32);
}

.dw-projects-btn:hover::after {
  left: 125%;
}

.dw-projects-btn span {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-dark);
  background: var(--theme-color-white);
  transition: all 0.35s ease;
}

.dw-projects-btn span svg {
  width: 12px;
  height: 12px;
  transition: all 0.35s ease;
}

.dw-projects-btn:hover span {
  transform: translateX(4px) rotate(45deg);
  background: var(--theme-color-white);
}

.dw-projects-btn:hover span svg {
  transform: scale(1.08);
}

.dw-projects-btn-secondary {
  background: var(--theme-color-white) !important;
  color: var(--theme-color-dark) !important;
  border-color: rgba(var(--theme-color-dark-rgb), 0.14) !important;
  box-shadow: 0 16px 36px rgba(var(--theme-color-dark-rgb), 0.1);
}

.dw-projects-btn-secondary::before,
.dw-projects-btn-secondary::after {
  display: none;
}

.dw-projects-btn-secondary:hover {
  color: var(--theme-color-yellow) !important;
  background: var(--theme-color-white) !important;
  box-shadow: 0 22px 48px rgba(var(--theme-color-dark-rgb), 0.14);
}

/* Mobile */
@media (max-width: 575px) {
  .dw-projects-btn {
    width: 100%;
    max-width: 310px;
    padding: 17px 24px !important;
    font-size: 13px !important;
  }
}

/* ==========================================
   Portfolio Section Background Add-ons
   Does not replace current portfolio styles
========================================== */

.dw-contractor-projects-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Fondo */
.dw-projects-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dw-projects-bg-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Overlay suave para mantener legibilidad */
.dw-projects-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--theme-color-yellow-rgb), 0.10), transparent 360px),
    radial-gradient(circle at 82% 70%, rgba(var(--theme-color-yellow-rgb), 0.08), transparent 420px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0.88) 100%);
}

/* Todo el contenido encima del fondo */
.dw-contractor-projects-section > .container,
.dw-contractor-projects-section .dw-projects-marquee-wrap {
  position: relative;
  z-index: 5;
}

/* Cohete flotante */
.dw-projects-floating-rocket {
  position: absolute;
  left: 3%;
  top: 95px;
  z-index: 3;
  width: min(190px, 15vw);
  pointer-events: none;
  animation: dwProjectsRocketFloat 6s ease-in-out infinite;
}

.dw-projects-floating-rocket img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 24px 36px rgba(var(--theme-color-dark-rgb), 0.20))
    drop-shadow(0 0 22px rgba(var(--theme-color-yellow-rgb), 0.18));
}

/* Planeta flotante */
.dw-projects-floating-planet {
  position: absolute;
  right: 4%;
  top: 123px;
  z-index: 3;
  width: min(197px, 14vw);
  pointer-events: none;
  animation: dwProjectsPlanetFloat 8s ease-in-out infinite;
}

.dw-projects-floating-planet img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 24px 38px rgba(var(--theme-color-dark-rgb), 0.16))
    drop-shadow(0 0 28px rgba(var(--theme-color-yellow-rgb), 0.16));
}

@keyframes dwProjectsRocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes dwProjectsPlanetFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .dw-projects-floating-rocket {
    width: 125px;
    left: 12px;
    top: 80px;
    opacity: 0.8;
  }

  .dw-projects-floating-planet {
    width: 120px;
    right: 12px;
    top: 85px;
    opacity: 0.8;
  }
}

@media (max-width: 575px) {
  .dw-projects-floating-rocket,
  .dw-projects-floating-planet {
    display: none;
  }
}


/* ==========================================
   Marquee Stability Fix
========================================== */

.dw-contractor-projects-section {
  position: relative;
  overflow: hidden;
}

.dw-projects-marquee-wrap {
  position: relative;
  z-index: 5;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.dw-projects-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.dw-projects-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 92px);
  width: max-content;
  will-change: transform;
  animation: none !important;
  transition: none !important;
}

.dw-project-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(230px, 18vw, 360px);
  pointer-events: auto;
  cursor: grab;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: filter 0.3s ease;
}

/* OJO: no uses translate/scale fuerte aquí porque puede romper el hover */
.dw-project-card:hover {
  transform: translateZ(0);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 56, 0.16));
}

.dw-project-card img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Evita que decoraciones del fondo intercepten el mouse */
.dw-projects-bg-image,
.dw-projects-bg-overlay,
.dw-projects-floating-rocket,
.dw-projects-floating-planet,
.dw-projects-bg-image *,
.dw-projects-bg-overlay *,
.dw-projects-floating-rocket *,
.dw-projects-floating-planet * {
  pointer-events: none !important;
}

/* Si tienes pseudo-elementos decorativos en la sección */
.dw-contractor-projects-section::before,
.dw-contractor-projects-section::after,
.dw-projects-marquee-wrap::before,
.dw-projects-marquee-wrap::after {
  pointer-events: none !important;
}

/* Mientras arrastras, evita selección rara */
.dw-projects-marquee-wrap.is-dragging .dw-project-card {
  pointer-events: none;
}


/* ==========================================
   Marquee Links Fix
========================================== */

.dw-project-card > a {
  position: relative;
  z-index: 6;
  display: block;
  cursor: pointer;
}

.dw-project-card > a img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.dw-project-info {
  position: relative;
  z-index: 7;
  pointer-events: auto !important;
}

.dw-project-info h3,
.dw-project-info h3 a {
  pointer-events: auto !important;
}

.dw-project-info h3 a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dw-project-info h3 a:hover {
  color: #4285b5;
}

.dw-projects-marquee-wrap.is-dragging .dw-project-card {
  pointer-events: auto;
}

/* Homepage-only body typography migration. */
body.dw-home-page .dw-space-subtext {
  font-size: var(--body-font-size-lead);
  line-height: var(--body-line-height-lead);
}

body.dw-home-page .dw-about-content .text,
body.dw-home-page .dw-home-diy-text,
body.dw-home-page .dw-contact-text,
body.dw-home-page .dw-faq-answer p {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

body.dw-home-page .ks-about-3-wrap .about-content .why-chose-box .text {
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}


/* ==========================================
   Terms FAQ Background Upgrade
   Colors: #000038 + #4285b5
========================================== */

.delos-terms-faq-bg-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(66, 133, 181, 0.09), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(45, 128, 183, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
}

.delos-terms-faq-bg-section .auto-container {
  position: relative;
  z-index: 5;
}

.delos-terms-faq-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle texture */
.delos-terms-faq-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(66, 133, 181, 0.18) 1px, transparent 1.8px);
  background-size: 64px 64px;
  opacity: 0.045;
}

/* Soft white veil so the FAQ content stays readable */
.delos-terms-faq-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.35) 58%, rgba(255, 255, 255, 0.08));
  z-index: 1;
}

/* Glows */
.delos-terms-faq-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
  z-index: 1;
}

.delos-terms-faq-glow-one {
  width: 560px;
  height: 560px;
  left: -240px;
  top: 80px;
  background: radial-gradient(circle, rgba(66, 133, 181, 0.16), transparent 70%);
}

.delos-terms-faq-glow-two {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -160px;
  background: radial-gradient(circle, rgba(45, 128, 183, 0.13), transparent 70%);
}

.delos-terms-faq-glow-three {
  width: 560px;
  height: 560px;
  left: -230px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(66, 133, 181, 0.13), transparent 70%);
}

.delos-terms-faq-glow-four {
  width: 540px;
  height: 540px;
  right: -220px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(45, 128, 183, 0.12), transparent 72%);
}

/* Orbit lines */
.delos-terms-faq-orbit {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(66, 133, 181, 0.15);
  z-index: 2;
}

.delos-terms-faq-orbit-one {
  width: 980px;
  height: 340px;
  left: -360px;
  top: 120px;
  transform: rotate(-18deg);
}

.delos-terms-faq-orbit-two {
  width: 920px;
  height: 300px;
  right: -330px;
  top: 70px;
  transform: rotate(15deg);
}

.delos-terms-faq-orbit-three {
  width: 760px;
  height: 250px;
  left: 48%;
  bottom: -70px;
  transform: translateX(-50%) rotate(-9deg);
  opacity: 0.55;
}

.delos-terms-faq-orbit-four {
  width: 940px;
  height: 320px;
  left: -330px;
  bottom: 70px;
  transform: rotate(16deg);
}

.delos-terms-faq-orbit-five {
  width: 880px;
  height: 300px;
  right: -300px;
  top: 80px;
  transform: rotate(-15deg);
}

/* Stars */
.delos-terms-faq-star {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #4285b5;
  clip-path: polygon(
    50% 0%,
    61% 38%,
    100% 50%,
    61% 62%,
    50% 100%,
    39% 62%,
    0% 50%,
    39% 38%
  );
  opacity: 0.48;
  filter: drop-shadow(0 0 12px rgba(66, 133, 181, 0.45));
  animation: delosTermsFaqTwinkle 4s ease-in-out infinite;
  z-index: 3;
}

.delos-terms-faq-star-one {
  top: 19%;
  left: 7%;
}

.delos-terms-faq-star-two {
  top: 16%;
  right: 13%;
  animation-delay: 0.7s;
}

.delos-terms-faq-star-three {
  bottom: 18%;
  left: 22%;
  animation-delay: 1.3s;
}

.delos-terms-faq-star-four {
  bottom: 24%;
  right: 9%;
  animation-delay: 1.9s;
}

.delos-terms-faq-star-five {
  top: 21%;
  left: 10%;
}

.delos-terms-faq-star-six {
  top: 15%;
  right: 12%;
  animation-delay: 0.9s;
}

.delos-terms-faq-star-seven {
  bottom: 16%;
  right: 26%;
  animation-delay: 1.7s;
}

/* Clouds with pure CSS */
.delos-terms-faq-cloud {
  position: absolute;
  width: 220px;
  height: 82px;
  border-radius: 999px;
  background: rgba(66, 133, 181, 0.08);
  filter: blur(0.2px);
  z-index: 2;
}

.delos-terms-faq-cloud::before,
.delos-terms-faq-cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.delos-terms-faq-cloud::before {
  width: 98px;
  height: 98px;
  left: 36px;
}

.delos-terms-faq-cloud::after {
  width: 130px;
  height: 130px;
  right: 26px;
}

.delos-terms-faq-cloud-one {
  left: -72px;
  bottom: 40px;
  opacity: 0.55;
}

.delos-terms-faq-cloud-two {
  right: -80px;
  top: 210px;
  opacity: 0.35;
  transform: scale(0.9);
}

.delos-terms-faq-cloud-three {
  left: -80px;
  top: 150px;
  opacity: 0.34;
  transform: scale(0.85);
}

.delos-terms-faq-cloud-four {
  right: -85px;
  bottom: 70px;
  opacity: 0.5;
}

/* Background images */
.delos-terms-faq-planet,
.delos-terms-faq-rocket {
  position: absolute;
  display: block;
  height: auto;
  user-select: none;
  pointer-events: none;
  z-index: 2;
}

/* First section planets */
.delos-terms-faq-planet-left {
  width: clamp(240px, 20vw, 390px);
  left: -135px;
  bottom: -95px;
  opacity: 0.24;
  transform: rotate(-12deg);
}

.delos-terms-faq-planet-right {
  width: clamp(160px, 13vw, 260px);
  right: 42px;
  top: 70px;
  opacity: 0.23;
  transform: rotate(10deg);
}

/* First section rocket */
.delos-terms-faq-rocket-one {
  width: clamp(110px, 8vw, 170px);
  right: 72px;
  bottom: 105px;
  opacity: 0.26;
  transform: rotate(-9deg);
  animation: delosTermsFaqFloatOne 6s ease-in-out infinite;
}

/* Second section planets */
.delos-terms-faq-planet-bottom-left {
  width: clamp(190px, 15vw, 300px);
  left: 60px;
  top: 110px;
  opacity: 0.32;
  transform: rotate(8deg);
}

.delos-terms-faq-planet-bottom-right {
  width: clamp(240px, 20vw, 390px);
  right: -120px;
  bottom: -61px;
  opacity: 0.23;
  transform: rotate(-8deg);
}

/* Second section rocket */
.delos-terms-faq-rocket-two {
  width: clamp(120px, 8vw, 175px);
  left: 58px;
  bottom: 130px;
  opacity: 0.34;
  transform: rotate(10deg);
  animation: delosTermsFaqFloatTwo 6.5s ease-in-out infinite;
}

/* Slight visual improvement without changing accordion structure */
.delos-terms-faq-bg-section .sec-title,
.delos-terms-faq-bg-section .inner-column {
  position: relative;
  z-index: 6;
}

.delos-terms-faq-bg-section .accordion.block {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Animations */
@keyframes delosTermsFaqTwinkle {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.85);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.18);
  }
}

@keyframes delosTermsFaqFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-9deg);
  }

  50% {
    transform: translate3d(-12px, -18px, 0) rotate(-4deg);
  }
}

@keyframes delosTermsFaqFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(10deg);
  }

  50% {
    transform: translate3d(12px, -16px, 0) rotate(5deg);
  }
}

/* ==========================================
   Easy Position Controls
   Move / resize here
========================================== */


.delos-terms-faq-planet-left {
  left: -135px;
  bottom: -95px;
  width: 330px;
  opacity: 0.44;
}

.delos-terms-faq-planet-right {
  right: 42px;
  top: 70px;
  width: 230px;
  opacity: 0.33;
}

.delos-terms-faq-rocket-one {
  right: 72px;
  bottom: 105px;
  width: 150px;
  opacity: 0.36;
}

/* Responsive */
@media (max-width: 1199px) {
  .delos-terms-faq-rocket-one {
    right: 24px;
    bottom: 80px;
  }

  .delos-terms-faq-rocket-two {
    left: 25px;
    bottom: 100px;
  }

  .delos-terms-faq-planet-right {
    right: -40px;
  }
}

@media (max-width: 991px) {
  .delos-terms-faq-bg-section {
    overflow: hidden;
  }

  .delos-terms-faq-rocket,
  .delos-terms-faq-planet {
    opacity: 0.08;
  }

  .delos-terms-faq-orbit {
    opacity: 0.45;
  }

  .delos-terms-faq-cloud {
    opacity: 0.28;
  }
}

@media (max-width: 767px) {
  .delos-terms-faq-rocket-one,
  .delos-terms-faq-rocket-two {
    display: none;
  }

  .delos-terms-faq-planet-left {
    width: 280px;
    left: -155px;
    bottom: -100px;
  }

  .delos-terms-faq-planet-right {
    width: 200px;
    right: -100px;
    top: 50px;
  }

  .delos-terms-faq-planet-bottom-left {
    width: 210px;
    left: -90px;
    top: 80px;
  }

  .delos-terms-faq-planet-bottom-right {
    width: 280px;
    right: -150px;
    bottom: -110px;
  }

  .delos-terms-faq-bg::before {
    opacity: 0.085;
  }
}

@media (max-width: 575px) {
  .delos-terms-faq-star {
    display: none;
  }

  .delos-terms-faq-orbit {
    opacity: 0.25;
  }

  .delos-terms-faq-glow {
    opacity: 0.6;
  }
}

/* =========================================================
   PRIVACY POLICY - FAQ DECORATIVE BACKGROUND
========================================================= */

.privacy-faq-section {
  /* Planet 01 */
  --privacy-p1-top: 70px;
  --privacy-p1-left: -55px;
  --privacy-p1-size: 180px;
  --privacy-p1-rotate: -12deg;

  /* Planet 02 */
  --privacy-p2-top: 35%;
  --privacy-p2-left: 4%;
  --privacy-p2-size: 85px;
  --privacy-p2-rotate: 15deg;

  /* Planet 03 */
  --privacy-p3-top: 110px;
  --privacy-p3-right: -75px;
  --privacy-p3-size: 230px;
  --privacy-p3-rotate: 12deg;

  /* Planet 04 */
  --privacy-p4-bottom: 26%;
  --privacy-p4-right: 3%;
  --privacy-p4-size: 95px;
  --privacy-p4-rotate: -18deg;

  /* Planet 05 */
  --privacy-p5-bottom: -70px;
  --privacy-p5-left: 43%;
  --privacy-p5-size: 170px;
  --privacy-p5-rotate: 8deg;

  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* Section stays white */
  background: var(--color-white, #ffffff);
}


/* =========================================================
   KEEP CONTENT ABOVE DECORATIONS
========================================================= */

.privacy-faq-section > .auto-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   BACKGROUND CONTAINER
========================================================= */

.privacy-faq-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}


/* =========================================================
   SHARED IMAGE SETTINGS
========================================================= */

.privacy-bg-image {
  position: absolute;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;

  /*
   Keeps planets decorative so they do not compete
   visually with the Privacy Policy content.
  */
  opacity: 0.13;

  filter: saturate(0.95);

  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}


/* =========================================================
   PLANET 01 - TOP LEFT
========================================================= */

.privacy-planet-01 {
  width: var(--privacy-p1-size);
  top: var(--privacy-p1-top);
  left: var(--privacy-p1-left);

  transform: rotate(var(--privacy-p1-rotate));
}


/* =========================================================
   PLANET 02 - LEFT / MIDDLE
========================================================= */

.privacy-planet-02 {
  width: var(--privacy-p2-size);
  top: var(--privacy-p2-top);
  left: var(--privacy-p2-left);

  transform: rotate(var(--privacy-p2-rotate));

  opacity: 0.11;
}


/* =========================================================
   PLANET 03 - TOP RIGHT / MAIN RINGED PLANET
========================================================= */

.privacy-planet-03 {
  width: var(--privacy-p3-size);
  top: var(--privacy-p3-top);
  right: var(--privacy-p3-right);

  transform: rotate(var(--privacy-p3-rotate));

  opacity: 0.36;
}


/* =========================================================
   PLANET 04 - RIGHT / MIDDLE
========================================================= */

.privacy-planet-04 {
  width: 18%;
  right: var(--privacy-p4-right);
  bottom: 20px;

  transform: rotate(var(--privacy-p4-rotate));

  opacity: 0.3;
}


/* =========================================================
   PLANET 05 - BOTTOM
========================================================= */

.privacy-planet-05 {
  width: var(--privacy-p5-size);
  bottom: var(--privacy-p5-bottom);
  left: var(--privacy-p5-left);

  transform: rotate(var(--privacy-p5-rotate));

  opacity: 0.12;
}


/* =========================================================
   DECORATIVE ORBIT
========================================================= */

.privacy-orbit {
  position: absolute;
  display: block;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(45, 128, 183, 0.11);
  border-radius: 50%;

  pointer-events: none;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 56, 0.055);
}

.privacy-orbit::before {
  width: 310px;
  height: 310px;
  inset: 54px;
}

.privacy-orbit::after {
  width: 190px;
  height: 190px;
  inset: 114px;
}

.privacy-orbit-01 {
  right: -230px;
  top: 47%;

  transform: rotate(-20deg);
}


/* =========================================================
   SMALL DECORATIVE SPACE DOTS
========================================================= */

.privacy-space-dots {
  position: absolute;
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--theme-color, #2d80b7);

  opacity: 0.25;

  box-shadow:
    38px 22px 0 rgba(45, 128, 183, 0.35),
    85px -12px 0 rgba(0, 0, 56, 0.18),
    130px 42px 0 rgba(45, 128, 183, 0.2),
    175px 8px 0 rgba(0, 0, 56, 0.12),
    210px 55px 0 rgba(45, 128, 183, 0.2);
}

.privacy-space-dots-01 {
  top: 18%;
  left: 24%;
}

.privacy-space-dots-02 {
  right: 27%;
  bottom: 12%;

  transform: rotate(165deg);
}


/* =========================================================
   TABLET
========================================================= */

@media only screen and (max-width: 991px) {

  .privacy-faq-section {
    --privacy-p1-size: 140px;
    --privacy-p1-left: -55px;

    --privacy-p2-size: 65px;
    --privacy-p2-left: 2%;

    --privacy-p3-size: 180px;
    --privacy-p3-right: -70px;

    --privacy-p4-size: 75px;

    --privacy-p5-size: 135px;
  }

  .privacy-bg-image {
    opacity: 0.1;
  }

  .privacy-orbit {
    opacity: 0.7;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

  .privacy-faq-section {
    --privacy-p1-top: 40px;
    --privacy-p1-left: -55px;
    --privacy-p1-size: 105px;

    --privacy-p2-top: 39%;
    --privacy-p2-left: -20px;
    --privacy-p2-size: 58px;

    --privacy-p3-top: 30%;
    --privacy-p3-right: -65px;
    --privacy-p3-size: 135px;

    --privacy-p4-bottom: 21%;
    --privacy-p4-right: -20px;
    --privacy-p4-size: 65px;

    --privacy-p5-bottom: -30px;
    --privacy-p5-left: 33%;
    --privacy-p5-size: 110px;
  }

  .privacy-bg-image {
    opacity: 0.08;
  }

  .privacy-orbit-01 {
    width: 300px;
    height: 300px;

    right: -210px;
  }

  .privacy-orbit-01::before {
    width: 220px;
    height: 220px;
    inset: 39px;
  }

  .privacy-orbit-01::after {
    width: 130px;
    height: 130px;
    inset: 84px;
  }

  .privacy-space-dots {
    opacity: 0.15;
  }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media only screen and (max-width: 480px) {

  .privacy-planet-02,
  .privacy-planet-04 {
    display: none;
  }

  .privacy-space-dots-01 {
    display: none;
  }
}


/* =========================================================
   ACCESSIBILITY FAQ — DELOSWEB SPACE BACKGROUND
   Decorative background only.
   ========================================================= */

.dw-accessibility-faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-white, #ffffff);
}

/* Keep the real FAQ content above all decorative elements */
.dw-accessibility-content {
  position: relative;
  z-index: 5;
}


/* =========================================================
   BACKGROUND LAYER
   ========================================================= */

.dw-accessibility-space-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}


/* Soft blue ambient light */
.dw-accessibility-space-bg::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -330px;
  left: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(45, 128, 183, 0.12) 0%,
      rgba(45, 128, 183, 0.055) 30%,
      rgba(45, 128, 183, 0.018) 55%,
      transparent 72%
    );

  pointer-events: none;
}


/* Second ambient light */
.dw-accessibility-space-bg::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -400px;
  bottom: -370px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(45, 128, 183, 0.10) 0%,
      rgba(45, 128, 183, 0.045) 35%,
      transparent 70%
    );

  pointer-events: none;
}


/* =========================================================
   PLANETS
   Each planet can be repositioned independently.
   ========================================================= */

.dw-accessibility-planet {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.dw-accessibility-planet img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 56, 0.08))
    drop-shadow(0 4px 12px rgba(45, 128, 183, 0.08));
}


/* -----------------------------
   PLANET 01 — TOP LEFT
   ----------------------------- */

.dw-accessibility-planet-one {
  width: 190px;

  top: 65px;
  left: -72px;

  transform: rotate(-16deg);

  opacity: 0.85;
}


/* -----------------------------
   PLANET 02 — TOP RIGHT
   ----------------------------- */

.dw-accessibility-planet-two {
  width: 135px;

  top: 130px;
  right: -35px;

  transform: rotate(20deg);

  opacity: 0.32;
}


/* -----------------------------
   PLANET 03 — BOTTOM LEFT
   ----------------------------- */

.dw-accessibility-planet-three {
  width: 220px;

  left: 3%;
  bottom: 65px;

  transform: rotate(14deg);

  opacity: 0.25;
}


/* -----------------------------
   PLANET 04 — BOTTOM RIGHT
   ----------------------------- */

.dw-accessibility-planet-four {
  width: 638px;

  right: -105px;
  bottom: -145px;

  transform: rotate(-22deg);

  opacity: 0.62;
}


/* =========================================================
   DECORATIVE ORBITS
   ========================================================= */

.dw-accessibility-orbit {
  position: absolute;

  border: 1px solid rgba(45, 128, 183, 0.10);
  border-radius: 50%;

  pointer-events: none;
}


/* Large orbit on left */
.dw-accessibility-orbit-one {
  width: 420px;
  height: 420px;

  left: -245px;
  top: 15%;

  transform: rotate(30deg);
}


/* Orbit on right */
.dw-accessibility-orbit-two {
  width: 520px;
  height: 520px;

  right: -350px;
  top: 26%;

  border-color: rgba(0, 0, 56, 0.065);

  transform: rotate(-25deg);
}


/* Very subtle lower orbit */
.dw-accessibility-orbit-three {
  width: 300px;
  height: 300px;

  left: 35%;
  bottom: -245px;

  border-color: rgba(45, 128, 183, 0.07);
}


/* =========================================================
   SMALL SPACE DOTS / STARS
   ========================================================= */

.dw-accessibility-star {
  position: absolute;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--theme-color, #2d80b7);

  opacity: 0.32;

  box-shadow:
    0 0 0 5px rgba(45, 128, 183, 0.035),
    0 0 18px rgba(45, 128, 183, 0.20);
}


.dw-accessibility-star-one {
  top: 17%;
  left: 9%;
}


.dw-accessibility-star-two {
  top: 28%;
  right: 6%;

  width: 4px;
  height: 4px;
}


.dw-accessibility-star-three {
  bottom: 22%;
  left: 12%;

  width: 5px;
  height: 5px;
}


.dw-accessibility-star-four {
  right: 12%;
  bottom: 15%;
}


.dw-accessibility-star-five {
  left: 48%;
  top: 8%;

  width: 4px;
  height: 4px;

  opacity: 0.20;
}


/* =========================================================
   SUBTLE CENTER BACKGROUND DETAIL
   Gives depth without changing FAQ cards.
   ========================================================= */

.dw-accessibility-faq::before {
  content: "";
  position: absolute;

  width: 460px;
  height: 460px;

  left: 50%;
  top: 48%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(45, 128, 183, 0.028) 0%,
      rgba(45, 128, 183, 0.012) 42%,
      transparent 70%
    );

  z-index: 0;
  pointer-events: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media only screen and (max-width: 1199px) {

  .dw-accessibility-planet-one {
    width: 155px;
    left: -65px;
  }

  .dw-accessibility-planet-two {
    width: 110px;
    right: -40px;
  }

  .dw-accessibility-planet-three {
    width: 100px;
    left: -15px;
  }

  .dw-accessibility-planet-four {
    width: 175px;
    right: -80px;
  }

  .dw-accessibility-orbit-one {
    width: 350px;
    height: 350px;
  }

  .dw-accessibility-orbit-two {
    width: 420px;
    height: 420px;
  }
}


@media only screen and (max-width: 991px) {

  .dw-accessibility-planet-one {
    width: 125px;
    top: 55px;
    left: -58px;

    opacity: 0.60;
  }

  .dw-accessibility-planet-two {
    width: 100px;
    top: 40%;
    right: -48px;

    opacity: 0.52;
  }

  .dw-accessibility-planet-three {
    width: 90px;
    left: -25px;
    bottom: 18%;
  }

  .dw-accessibility-planet-four {
    width: 145px;
    right: -70px;
    bottom: 20px;

    opacity: 0.62;
  }

  .dw-accessibility-orbit-one {
    left: -280px;
  }

  .dw-accessibility-orbit-two {
    right: -365px;
  }

  .dw-accessibility-star-five {
    display: none;
  }
}


@media only screen and (max-width: 767px) {

  /*
   * Keep decorative planets mostly outside the viewport
   * so they never interfere visually with FAQ readability.
   */

  .dw-accessibility-planet-one {
    width: 105px;

    top: 35px;
    left: -55px;
  }

  .dw-accessibility-planet-two {
    width: 85px;

    top: 36%;
    right: -42px;
  }

  .dw-accessibility-planet-three {
    width: 78px;

    left: -38px;
    bottom: 23%;
  }

  .dw-accessibility-planet-four {
    width: 115px;

    right: -58px;
    bottom: 12px;
  }

  .dw-accessibility-orbit-one,
  .dw-accessibility-orbit-two,
  .dw-accessibility-orbit-three {
    opacity: 0.55;
  }

  .dw-accessibility-star {
    opacity: 0.18;
  }
}


@media only screen and (max-width: 575px) {

  .dw-accessibility-planet-one {
    width: 90px;
    left: -50px;
  }

  .dw-accessibility-planet-two {
    width: 72px;
    right: -40px;
  }

  .dw-accessibility-planet-three {
    width: 68px;
    left: -40px;
  }

  .dw-accessibility-planet-four {
    width: 95px;
    right: -52px;
  }

  .dw-accessibility-orbit {
    opacity: 0.35;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .dw-accessibility-planet,
  .dw-accessibility-orbit,
  .dw-accessibility-star {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   READY-TO-GO — FIRST SECTION ONLY
   ========================================================= */

.section-eyebrow {
  color: #43b7ff !important;

  font-weight: inherit;

  text-shadow: 0 0 30px rgba(67, 183, 255, 0.22)
}

@media (max-width: 426px) {
  section.dw-ready-first-section {
    padding-top: 120px !important;
  }
}


/* =========================================================
   WHY CHOOSE DELOSWEB
   RESPONSIVE FIX — 768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------------------
       MAIN SECTION
       Remove desktop forced heights / spacing
    ----------------------------------------------------- */

    .ks-about-3-area.dw-home-section {
        height: auto !important;
        min-height: 0 !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        overflow: hidden;
    }


    .ks-about-3-area.dw-home-section .container,
    .ks-about-3-area.dw-home-section .row,
    .ks-about-3-area.dw-home-section .col-12 {
        height: auto !important;
        min-height: 0 !important;
    }


    /* -----------------------------------------------------
       MAIN WRAPPER
       Everything returns to normal document flow
    ----------------------------------------------------- */

    .ks-about-3-wrap {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        gap: 28px;
    }


    /* =====================================================
       CONTENT
    ===================================================== */

    .ks-about-3-wrap .about-content {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;

        order: 1;
    }


    /* -----------------------------------------------------
       SECTION HEADING
    ----------------------------------------------------- */

    .ks-about-3-wrap .ks-section-title-wrap {
        width: 100%;
        max-width: 620px;

        margin: 0 auto 32px !important;

        text-align: center;
    }


    .ks-about-3-wrap .dw-home-diy-eyebrow {
        justify-content: center;
    }


    .ks-about-3-wrap .dw-global-section-title-line {
        margin-left: auto;
        margin-right: auto;
    }


    .ks-about-3-wrap .dw-choose-title {
        margin-bottom: 18px !important;

        font-size: clamp(34px, 7vw, 48px) !important;
        line-height: 1.05 !important;

        text-align: center;
    }


    /* Remove desktop forced line breaks on mobile */
    .ks-about-3-wrap .dw-choose-title br {
        display: none;
    }


    .ks-about-3-wrap .dw-choose-intro {
        max-width: 600px;

        margin: 0 auto !important;

        font-size: 16px;
        line-height: 1.65;

        text-align: center;
    }


    /* =====================================================
       ROCKET
       Stop the rocket creating giant empty areas
    ===================================================== */

    .ks-about-3-wrap .dw-choose-rocket {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: block;

        width: min(190px, 42vw) !important;
        max-width: 190px !important;

        height: auto !important;

        margin: 5px auto 25px !important;

        transform: none !important;
    }


    /* =====================================================
       BENEFIT CARDS
    ===================================================== */

    .ks-about-3-wrap .about-content > .row {
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;

        width: 100%;

        margin: 0 !important;
    }


    .ks-about-3-wrap .about-content > .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;

        padding: 0 !important;

        flex: none !important;
    }


    .ks-about-3-wrap .why-chose-box {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        height: 100% !important;

        margin: 0 !important;

        transform: none !important;
    }


    .ks-about-3-wrap .why-chose-box .inner-box {
        height: 100%;

        padding: 26px 22px !important;

        border-radius: 22px;
    }


    .ks-about-3-wrap .why-chose-box .title {
        font-size: 19px !important;
        line-height: 1.2 !important;
    }


    .ks-about-3-wrap .why-chose-box .text {
        font-size: 15px;
        line-height: 1.55;
    }


    .ks-about-3-wrap .dw-choose-card-list {
        margin-top: 18px;
    }

@media (max-width: 476px) {
    .ks-about-3-wrap .about-content > .row {
        display: contents !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        width: 100%;
        margin: 0 !important;
    }
}
    /* =====================================================
       VIDEO
       No absolute positioning in responsive
    ===================================================== */

    .ks-about-3-wrap .ks-about-3-thumb,
    .ks-about-3-wrap .delos-video-thumb {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 620px !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 4px auto 0 !important;

        transform: none !important;

        order: 2;

        overflow: hidden;

        border-radius: 24px;
    }


    .ks-about-3-wrap .ks-about-3-thumb > img {
        display: block;

        width: 100% !important;
        height: auto !important;

        aspect-ratio: 16 / 9;

        object-fit: cover;

        border-radius: inherit;
    }


    /* Play button remains centered */
    .ks-about-3-wrap .delos-video-play-btn {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;

        transform: translate(-50%, -50%) !important;
    }


    /* =====================================================
       MAIN CTA
       THIS IS ONE OF THE BIG FIXES
    ===================================================== */

    .ks-about-3-wrap .dw-choose-video-cta {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: grid !important;

        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "icon copy"
            "button button";

        align-items: center;

        width: 100% !important;
        max-width: 620px !important;

        height: auto !important;
        min-height: 0 !important;

        gap: 14px 18px;

        margin: 0 auto !important;
        padding: 24px !important;

        transform: none !important;

        order: 3;

        border-radius: 24px;
    }


    .ks-about-3-wrap .dw-choose-video-cta-icon {
        grid-area: icon;

        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        flex-shrink: 0;

        margin: 0 !important;

        transform: none !important;
    }


    .ks-about-3-wrap .dw-choose-video-cta > div:not(.dw-choose-video-cta-icon) {
        grid-area: copy;
    }


    .ks-about-3-wrap .dw-choose-video-cta h3 {
        margin: 0 0 7px !important;

        font-size: clamp(20px, 4vw, 26px) !important;
        line-height: 1.08 !important;
    }


    .ks-about-3-wrap .dw-choose-video-cta p {
        margin: 0 !important;

        font-size: 15px;
        line-height: 1.5;
    }


    .ks-about-3-wrap .dw-choose-video-cta-btn {
        grid-area: button;

        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 100% !important;
        min-height: 52px;

        margin: 6px 0 0 !important;

        transform: none !important;
    }


    /* =====================================================
       PROOF STRIP
       SECOND BIG FIX
    ===================================================== */

    .ks-about-3-wrap .dw-choose-proof-strip {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;

        transform: none !important;

        order: 4;

        overflow: hidden;

        border-radius: 24px;
    }


    .ks-about-3-wrap .dw-choose-proof-strip span {
        display: flex;

        align-items: center;
        justify-content: center;

        min-height: 58px;

        gap: 10px;

        padding: 14px 18px;

        text-align: center;
    }


    .ks-about-3-wrap .dw-choose-proof-strip span:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }


    .ks-about-3-wrap .dw-choose-proof-strip span:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

}


/* =========================================================
   WEBSITE SOLUTIONS
   RESPONSIVE — 1024px AND BELOW
========================================================= */

@media (max-width: 1024px) {

    /* -----------------------------------------------------
       SECTION
       Give the layout breathing room from screen edges
    ----------------------------------------------------- */

    .dw-solution-select-section {
        position: relative;
        width: 100%;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        overflow: hidden;
    }


    /* IMPORTANT:
       Prevent content from touching viewport edges
    */
    .dw-solution-select-section > .auto-container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        padding-left: 36px !important;
        padding-right: 36px !important;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       MAIN GRID
    ----------------------------------------------------- */

    .dw-solution-select-grid {
        display: grid !important;

        grid-template-columns:
            minmax(190px, 0.55fr)
            minmax(0, 1.45fr);

        align-items: start;

        gap: 36px !important;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;
    }


    /* -----------------------------------------------------
       HEADING
    ----------------------------------------------------- */

    .dw-solution-select-heading {
        width: 100%;
        max-width: 260px;
    }


    .dw-solution-select-heading h2 {
        margin-bottom: 28px;

        font-size: clamp(38px, 5vw, 52px) !important;
        line-height: 1.05 !important;
    }


    /* -----------------------------------------------------
       CARDS AREA
    ----------------------------------------------------- */

    .dw-solution-select-list {
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px !important;

        width: 100%;
        min-width: 0;
    }


    .dw-solution-select-card {
        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
    }


    /* -----------------------------------------------------
       IMAGE / MEDIA
    ----------------------------------------------------- */

    .dw-solution-media {
        position: relative;

        display: block;

        width: 100% !important;

        min-height: 220px;

        overflow: hidden;
    }


    .dw-solution-bg {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* -----------------------------------------------------
       CARD CONTENT
    ----------------------------------------------------- */

    .dw-solution-info {
        width: 100%;

        padding: 25px 22px !important;

        box-sizing: border-box;
    }


    .dw-solution-info h3 {
        font-size: clamp(24px, 3vw, 31px) !important;
        line-height: 1.08 !important;
    }


    .dw-solution-info p {
        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================================
   CONTACT INFO — 3 COLUMNS
========================================================= */

.dw-contact-info-list {
    display: grid !important;

    /* Email needs more room */
    grid-template-columns:
        minmax(190px, 1.4fr)
        minmax(194px, 0.9fr)
        minmax(130px, 1fr) !important;

    align-items: start;
    justify-content: center;

    column-gap: 18px !important;

    width: 100% !important;
    max-width: 620px !important;

    margin: 0 auto !important;

    padding: 0 !important;
}


/* Each contact */
.dw-contact-info-list > * {
    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-start !important;

    width: 100% !important;
    min-width: 0 !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
}


/* Icons */
.dw-contact-info-list > * .icon,
.dw-contact-info-list > * > i {
    flex: 0 0 auto;
    margin: 0 auto !important;
}


/* General contact text */
.dw-contact-info-list > * a,
.dw-contact-info-list > * p,
.dw-contact-info-list > * span {
    margin: 0 !important;

    font-size: 14px !important;
    line-height: 1.3 !important;

    text-align: center !important;
}


/* Email + phone:
   DO NOT allow them to break into weird lines */
.dw-contact-info-list > *:nth-child(1) a,
.dw-contact-info-list > *:nth-child(2) a {
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}


/* Location can wrap naturally */
.dw-contact-info-list > *:nth-child(3) a,
.dw-contact-info-list > *:nth-child(3) span {
    white-space: normal !important;
}

/* =========================================================
   CONTACT INFO — TABLET
========================================================= */

@media (max-width: 768px) {

    .dw-contact-info-list {
        grid-template-columns:
            minmax(180px, 1.45fr)
            minmax(125px, 0.9fr)
            minmax(125px, 1fr) !important;

        column-gap: 18px !important;

        width: 100% !important;
        max-width: 560px !important;
    }


    .dw-contact-info-list > * a,
    .dw-contact-info-list > * p,
    .dw-contact-info-list > * span {
        font-size: 13px !important;
    }

}

/* =========================================================
   CONTACT INFO — MOBILE COMPACT
   568px AND BELOW
========================================================= */

@media (max-width: 568px) {

    .dw-contact-info-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;

        width: 100% !important;
        max-width: 360px !important;

        margin: 0 auto !important;
        padding: 0 16px !important;
    }


    /* Each contact row */
    .dw-contact-info-list > * {
        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;

        gap: 14px !important;

        margin: 0 !important;
        padding: 10px 0 !important;

        text-align: left !important;
    }


    /* Icon */
    .dw-contact-info-list > * .icon,
    .dw-contact-info-list > * > i {
        flex: 0 0 auto;

        margin: 0 !important;
    }


    /* Clickable information */
    .dw-contact-info-list > * a {
        display: flex !important;
        align-items: center !important;

        min-height: 44px;

        margin: 0 !important;
        padding: 2px 0 !important;

        color: inherit;

        font-size: 16px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;

        text-align: left !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* Phone + email should remain on one line */
    .dw-contact-info-list > *:nth-child(1) a,
    .dw-contact-info-list > *:nth-child(2) a {
        white-space: nowrap !important;
    }


    /* Location may wrap if necessary */
    .dw-contact-info-list > *:nth-child(3) a,
    .dw-contact-info-list > *:nth-child(3) span {
        white-space: normal !important;
    }

}


/* =========================================================
   CONTACT INFO
   SMALL MOBILE — 568px AND BELOW
========================================================= */

@media (max-width: 1028px) {

    .dw-contact-launch-section {
        padding-top: 55px !important;
        padding-bottom: 50px !important;
    }


    .dw-contact-launch-section .contact-container {
        padding-inline: 18px !important;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .dw-contact-launch-left .ks-section-title-wrap {
        margin-bottom: 18px !important;
        padding-inline: 4px;
    }


    .dw-contact-title {
        max-width: 500px;

        font-size: clamp(30px, 8vw, 38px) !important;
        line-height: 1.08 !important;
    }


    /* -----------------------------------------------------
       PARAGRAPH
    ----------------------------------------------------- */

    .dw-contact-text {
        max-width: 480px;

        margin-bottom: 26px !important;
        padding-inline: 4px;

        font-size: 16px !important;
        line-height: 1.6 !important;
    }


    /* =====================================================
       CONTACT ITEMS
       One below another
    ===================================================== */

    .dw-contact-info-list {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 7px !important;

        width: 100% !important;
        max-width: 370px !important;

        margin: 0 auto !important;
    }


    .dw-contact-info-item {
        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;

        gap: 14px !important;

        padding: 9px 10px !important;
        margin: 0 !important;

        text-align: left !important;
    }


    /* Icon stays beside text */
    .dw-contact-info-item > span {
        flex: 0 0 auto;

        margin: 0 !important;
    }


    /* Text */
    .dw-contact-info-item strong {
        margin: 0 !important;

        font-size: 16px !important;
        line-height: 1.35 !important;
        font-weight: 700;

        text-align: left !important;
    }


    /* Email + phone remain on one line */
    .dw-contact-info-item:nth-child(1) strong,
    .dw-contact-info-item:nth-child(2) strong {
        white-space: nowrap !important;
    }


    /* Location */
    .dw-contact-info-item:nth-child(3) strong {
        white-space: normal !important;
    }

    .dw-contact-rocket-wrap {
      bottom: -66px;
        left: 20%;
        width: 209px;
    }

}


/* =========================================================
   WEBSITE SOLUTIONS
   RESPONSIVE REDESIGN — 768px AND BELOW
========================================================= */

@media (max-width: 1028px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .dw-solution-select-section {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        padding: 65px 0 !important;

        overflow: hidden !important;
    }


    .dw-solution-select-section > .auto-container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        padding-left: 24px !important;
        padding-right: 24px !important;

        box-sizing: border-box;
    }


    /* =====================================================
       MAIN LAYOUT
    ===================================================== */

    .dw-solution-select-grid {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 30px !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .dw-solution-select-heading {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 620px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        transform: none !important;

        text-align: center !important;
    }


    .dw-solution-select-heading .dw-global-section-eyebrow {
        justify-content: center !important;
    }


    .dw-solution-select-heading .dw-global-section-title-line {
        margin-left: auto !important;
        margin-right: auto !important;
    }


    .dw-solution-select-heading h2 {
        margin: 12px 0 0 !important;

        font-size: clamp(35px, 7vw, 46px) !important;
        line-height: 1.05 !important;

        text-align: center !important;
    }


    .dw-solution-select-heading h2 br {
        display: none !important;
    }


    /* Desktop CTA disappears */
    .dw-solution-select-cta--desktop {
        display: none !important;
    }


    /* =====================================================
       CARDS CONTAINER

       CRITICAL:
       ONE CARD PER ROW
    ===================================================== */

    .dw-solution-select-list {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        grid-template-columns: none !important;

        width: 100% !important;
        max-width: 650px !important;

        height: auto !important;
        min-height: 0 !important;

        gap: 24px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        transform: none !important;
    }


    /* =====================================================
       INDIVIDUAL CARD
    ===================================================== */

    .dw-solution-select-card {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 46%)
            minmax(0, 54%) !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 250px !important;

        flex: none !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;

        overflow: hidden !important;

        border-radius: 24px !important;
    }


    /* Important:
       Prevent second card from inheriting desktop offsets
    */
    .dw-solution-select-card:nth-child(1),
    .dw-solution-select-card:nth-child(2) {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        margin: 0 !important;

        transform: none !important;
    }


    /* =====================================================
       IMAGE SIDE
    ===================================================== */

    .dw-solution-media {
        position: relative !important;

        top: auto !important;
        left: auto !important;

        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;
        min-height: 250px !important;

        margin: 0 !important;

        transform: none !important;

        overflow: hidden !important;

        border-radius: 24px 0 0 24px !important;
    }


    .dw-solution-bg {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }


    /* Mascot */
    .dw-solution-character {
        max-width: 82% !important;
        max-height: 82% !important;
    }


    /* Bottom image label */
    .dw-solution-media > span {
        left: 0 !important;
        right: 0 !important;
        bottom: 16px !important;

        width: 100% !important;

        padding: 0 12px !important;

        font-size: clamp(15px, 2.6vw, 19px) !important;
        line-height: 1.1 !important;

        text-align: center !important;
    }


    /* =====================================================
       INFORMATION SIDE
    ===================================================== */

    .dw-solution-info {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 250px !important;

        margin: 0 !important;

        padding: 30px 26px !important;

        transform: none !important;

        box-sizing: border-box;
    }


    .dw-solution-info > span {
        margin: 0 0 10px !important;

        font-size: 12px !important;
        line-height: 1.2 !important;
    }


    .dw-solution-info h3 {
        max-width: calc(100% - 45px);

        margin: 0 0 12px !important;
        padding: 0 !important;

        font-size: clamp(25px, 4vw, 30px) !important;
        line-height: 1.05 !important;
    }


    .dw-solution-info p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 14px !important;
        line-height: 1.55 !important;
    }


    /* Arrow */
    .dw-solution-info > a {
        position: absolute !important;

        top: 24px !important;
        right: 22px !important;
        bottom: auto !important;
        left: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 48px !important;
        height: 48px !important;

        margin: 0 !important;

        transform: none !important;

        border-radius: 50% !important;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .dw-solution-select-cta--mobile {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;

        margin: 2px auto 0 !important;
    }


    .dw-solution-select-cta--mobile .dw-about-more-btn {
        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        min-height: 54px;

        padding: 0 30px !important;
    }

}

/* =========================================================
   WEBSITE SOLUTIONS
   MOBILE — 568px AND BELOW
========================================================= */

@media (max-width: 568px) {

    .dw-solution-select-section {
        padding: 55px 0 !important;
    }


    .dw-solution-select-section > .auto-container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }


    .dw-solution-select-grid {
        gap: 26px !important;
    }


    /* -----------------------------------------------------
       CARDS
    ----------------------------------------------------- */

    .dw-solution-select-list {
        max-width: 430px !important;

        gap: 22px !important;
    }


    .dw-solution-select-card {
        display: flex !important;
        flex-direction: column !important;

        grid-template-columns: none !important;

        width: 100% !important;

        min-height: 0 !important;

        border-radius: 22px !important;
    }


    /* -----------------------------------------------------
       IMAGE
    ----------------------------------------------------- */

    .dw-solution-media {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 16 / 10 !important;

        border-radius: 22px 22px 0 0 !important;
    }


    .dw-solution-character {
        max-width: 78% !important;
        max-height: 78% !important;
    }


    .dw-solution-media > span {
        bottom: 15px !important;

        font-size: 18px !important;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .dw-solution-info {
        width: 100% !important;

        min-height: 0 !important;

        padding: 25px 22px 27px !important;
    }


    .dw-solution-info h3 {
        max-width: calc(100% - 55px);

        font-size: 26px !important;
    }


    .dw-solution-info h3 br {
        display: none !important;
    }


    .dw-solution-info p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }


    .dw-solution-info > a {
        top: 20px !important;
        right: 20px !important;

        width: 46px !important;
        height: 46px !important;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .dw-solution-select-cta--mobile .dw-about-more-btn {
        width: 100% !important;
        max-width: 430px !important;

        min-height: 54px;
    }

}

/* =========================================================
   DELOSWEB — PROOF STRIP
   MOBILE FIX — 404px AND BELOW
========================================================= */

@media (max-width: 412px) {

    .dw-choose-proof-strip {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        width: calc(100% - 24px) !important;
        max-width: 380px !important;

        margin: 0 auto !important;

        padding: 0 !important;

        overflow: hidden !important;

        border-radius: 22px !important;
    }


    /* -----------------------------------------------------
       EACH BENEFIT
    ----------------------------------------------------- */

    .dw-choose-proof-strip > span {
        display: flex !important;

        align-items: center !important;
        justify-content: flex-start !important;

        min-width: 0 !important;
        min-height: 68px !important;

        gap: 10px !important;

        margin: 0 !important;

        padding: 14px 12px !important;

        font-size: 13px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;

        text-align: left !important;

        white-space: normal !important;

        box-sizing: border-box !important;
    }


    /* -----------------------------------------------------
       ICON
    ----------------------------------------------------- */

    .dw-choose-proof-strip > span i {
        flex: 0 0 auto !important;

        width: 20px !important;

        margin: 0 !important;

        font-size: 17px !important;

        text-align: center !important;
    }


    /* -----------------------------------------------------
       DIVIDERS
       Cleaner 2 x 2 structure
    ----------------------------------------------------- */

    .dw-choose-proof-strip > span:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
    }

    .dw-choose-proof-strip > span:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    }


    /* Remove any conflicting borders */
    .dw-choose-proof-strip > span:nth-child(even) {
        border-right: 0 !important;
    }

}



@media (max-width: 768px) {
.featured-products .filters li {
    position: relative;
    display: inline-block;
    line-height: 24px;
    padding: 0px 2px 10px;
    cursor: pointer;
    color: #797f7d;
    font-weight: 500;
    font-size: 18px;
    margin: 6px 5px 0;
    padding: 5px 12px 10px;
    transition: all 300ms ease;
}
}
/* =========================================================
   DELOSWEB
   INNER PAGE — RESPONSIVE HEADER CLEARANCE
========================================================= */

/*
   Extra space AFTER the mobile/sticky header.

   1024px → 26px
   768px  → 20px
   576px  → 16px
   420px  → 12px
*/


/* =========================================================
   1024px AND BELOW
========================================================= */

@media (max-width: 1024px) {

    :root {
        --dw-page-top-gap: 26px;
    }


    /* -----------------------------------------------------
       STANDARD FIRST SECTIONS
    ----------------------------------------------------- */

    .main-header.inner-page ~ .dw-cwh-hero,

    .main-header.inner-page ~ .dw-beauty-hero,

    .main-header.inner-page ~ .dw-home-services-hero-section,

    .main-header.inner-page ~ .dw-local-page .dw-local-hero,

    .main-header.inner-page ~ .dw-custom-page .dw-custom-hero,

    .main-header.inner-page ~ .dw-portfolio-hero-section,

    .main-header.inner-page ~ .dw-audience-hero-section,

    .main-header.inner-page ~
    .featured-products.dw-ready-websites-section,

    .main-header.inner-page ~
    .delos-faq-intro:first-of-type,

    .main-header.inner-page ~
    .contact-section.dw-contact-section-clean,

    .main-header.inner-page ~
    .faqs-section-home1.innerpage,

    .main-header.inner-page ~
    section[class=""]:first-of-type {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 76px)
                + var(--dw-page-top-gap)
            ) !important;
    }


    /* -----------------------------------------------------
       FIRST SECTION INSIDE MAIN
    ----------------------------------------------------- */

    .main-header.inner-page ~ main > .delos-faq-intro:first-child {
        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 76px)
                + var(--dw-page-top-gap)
            ) !important;
    }


    /* =====================================================
       BLOG
       Special case because your HTML has:
       style="padding-top: 180px;"
    ===================================================== */

    .dw-blog-article-page
    .main-header.inner-page ~ .blog-details,

    .blog-details {
        padding-top: 0 !important;
    }


    .dw-blog-article-page .blog-details > .container,
    .blog-details > .container {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 76px)
                + var(--dw-page-top-gap)
            ) !important;

        padding-left: 28px !important;
        padding-right: 28px !important;

        box-sizing: border-box;
    }

}



/* =========================================================
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    :root {
        --dw-page-top-gap: 20px;
    }


    .main-header.inner-page ~ .dw-cwh-hero,

    .main-header.inner-page ~ .dw-beauty-hero,

    .main-header.inner-page ~ .dw-home-services-hero-section,

    .main-header.inner-page ~ .dw-local-page .dw-local-hero,

    .main-header.inner-page ~ .dw-custom-page .dw-custom-hero,

    .main-header.inner-page ~ .dw-portfolio-hero-section,

    .main-header.inner-page ~ .dw-audience-hero-section,

    .main-header.inner-page ~
    .featured-products.dw-ready-websites-section,

    .main-header.inner-page ~
    .delos-faq-intro:first-of-type,

    .main-header.inner-page ~
    .contact-section.dw-contact-section-clean,

    .main-header.inner-page ~
    .faqs-section-home1.innerpage,

    .main-header.inner-page ~
    section[class=""]:first-of-type,

    .main-header.inner-page ~ main > .delos-faq-intro:first-child {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 70px)
                + var(--dw-page-top-gap)
            ) !important;
    }


    /* BLOG */

    .dw-blog-article-page .blog-details > .container,
    .blog-details > .container {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 70px)
                + var(--dw-page-top-gap)
            ) !important;

        padding-left: 20px !important;
        padding-right: 20px !important;
    }


    /* Blog content should never touch screen edges */

    .blog-details .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    .blog-details .col-xl-8,
    .blog-details .col-lg-7,
    .blog-details .col-xl-4,
    .blog-details .col-lg-5 {

        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}



/* =========================================================
   576px AND BELOW
========================================================= */

@media (max-width: 576px) {

    :root {
        --dw-page-top-gap: 16px;
    }


    .main-header.inner-page ~ .dw-cwh-hero,

    .main-header.inner-page ~ .dw-beauty-hero,

    .main-header.inner-page ~ .dw-home-services-hero-section,

    .main-header.inner-page ~ .dw-local-page .dw-local-hero,

    .main-header.inner-page ~ .dw-custom-page .dw-custom-hero,

    .main-header.inner-page ~ .dw-portfolio-hero-section,

    .main-header.inner-page ~ .dw-audience-hero-section,

    .main-header.inner-page ~
    .featured-products.dw-ready-websites-section,

    .main-header.inner-page ~
    .delos-faq-intro:first-of-type,

    .main-header.inner-page ~
    .contact-section.dw-contact-section-clean,

    .main-header.inner-page ~
    .faqs-section-home1.innerpage,

    .main-header.inner-page ~
    section[class=""]:first-of-type,

    .main-header.inner-page ~ main > .delos-faq-intro:first-child {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 66px)
                + var(--dw-page-top-gap)
            ) !important;
    }


    /* BLOG */

    .dw-blog-article-page .blog-details > .container,
    .blog-details > .container {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 66px)
                + var(--dw-page-top-gap)
            ) !important;

        padding-left: 17px !important;
        padding-right: 17px !important;
    }

}



/* =========================================================
   420px AND BELOW
========================================================= */

@media (max-width: 420px) {

    :root {
        --dw-page-top-gap: 12px;
    }


    .main-header.inner-page ~ .dw-cwh-hero,

    .main-header.inner-page ~ .dw-beauty-hero,

    .main-header.inner-page ~ .dw-home-services-hero-section,

    .main-header.inner-page ~ .dw-local-page .dw-local-hero,

    .main-header.inner-page ~ .dw-custom-page .dw-custom-hero,

    .main-header.inner-page ~ .dw-portfolio-hero-section,

    .main-header.inner-page ~ .dw-audience-hero-section,

    .main-header.inner-page ~
    .featured-products.dw-ready-websites-section,

    .main-header.inner-page ~
    .delos-faq-intro:first-of-type,

    .main-header.inner-page ~
    .contact-section.dw-contact-section-clean,

    .main-header.inner-page ~
    .faqs-section-home1.innerpage,

    .main-header.inner-page ~
    section[class=""]:first-of-type,

    .main-header.inner-page ~ main > .delos-faq-intro:first-child {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 62px)
                + var(--dw-page-top-gap)
            ) !important;
    }


    /* BLOG */

    .dw-blog-article-page .blog-details > .container,
    .blog-details > .container {

        padding-top:
            calc(
                var(--dw-mobile-header-clearance, 62px)
                + var(--dw-page-top-gap)
            ) !important;

        padding-left: 15px !important;
        padding-right: 15px !important;
    }

}

.ks-blog-area .ks-section-title-wrap {
    margin-bottom: 90px !important;
}

/* =========================================================
   HOME BLOG
   RESPONSIVE — 1024px AND BELOW
   KEEP 3 CARDS IN ONE ROW
========================================================= */

@media (max-width: 1024px) {

    /* -----------------------------------------------------
       SECTION CONTAINER
    ----------------------------------------------------- */

    .ks-blog-area.ks-blog-mlr {
        width: 100% !important;
        overflow: hidden !important;
    }

    .ks-blog-area.ks-blog-mlr > .container-fluid {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 22px !important;
        padding-right: 22px !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       TITLE AREA
       Give it its OWN space
    ===================================================== */

    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:first-of-type {

        position: relative !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        z-index: 5 !important;
    }


    .ks-blog-area .ks-section-title-wrap {
        position: relative !important;

        width: 100% !important;
        max-width: 720px !important;

        margin: 0 auto !important;

        padding: 0 10px 52px !important;

        text-align: center !important;

        transform: none !important;

        z-index: 5 !important;
    }


    .ks-blog-area .ks-section-title {
        position: relative !important;

        width: 100% !important;
        max-width: 700px !important;

        margin: 12px auto 0 !important;

        line-height: 1.08 !important;

        text-align: center !important;

        transform: none !important;

        z-index: 5 !important;
    }


    /* =====================================================
       BLOG CARDS ROW

       IMPORTANT:
       Never allow this row to move over the title.
    ===================================================== */

    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2) {

        position: relative !important;

        display: grid !important;

        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        gap: 18px !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        top: auto !important;

        transform: none !important;

        z-index: 2 !important;
    }


    /* =====================================================
       BOOTSTRAP COLUMNS
    ===================================================== */

    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4 {

        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        flex: none !important;
        flex-basis: auto !important;

        margin: 0 !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        transform: none !important;
    }


    /* Remove the previous special third-card positioning */
    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4:nth-child(3) {

        grid-column: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        justify-self: stretch !important;
    }


    /* =====================================================
       CARD
       Stop template from pulling cards upward
    ===================================================== */

    .ks-blog-area .ks-blog-item {
        position: relative !important;

        top: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        transform: none !important;
    }


    .ks-blog-area .ks-blog-thumb {
        position: relative !important;

        top: auto !important;

        width: 100% !important;

        margin: 0 !important;

        transform: none !important;
    }


    .ks-blog-area .ks-blog-thumb img {
        display: block !important;

        width: 100% !important;
        height: auto !important;

        object-fit: cover !important;
    }


    /* =====================================================
       BLOG CONTENT
    ===================================================== */

    .ks-blog-area .ks-blog-content {
        position: relative !important;

        top: auto !important;

        margin-top: 0 !important;

        transform: none !important;
    }


    .ks-blog-area .ks-blog-title {
        padding-left: 10px !important;
        padding-right: 10px !important;

        font-size: clamp(16px, 2vw, 21px) !important;
        line-height: 1.3 !important;
    }


    /* =====================================================
       META
    ===================================================== */

    .ks-blog-area .ks-blog-meta {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        flex-wrap: wrap !important;

        gap: 8px 12px !important;
    }


    /* =====================================================
       VIEW ALL POSTS CTA
    ===================================================== */

    .ks-blog-area .dw-home-blog-cta {
        width: 100% !important;

        margin-top: 38px !important;

        text-align: center !important;
    }

}


/* =========================================================
   HOME BLOG
   650px AND BELOW
   ALL CARDS STACKED
========================================================= */

@media (max-width: 650px) {

    .ks-blog-area.ks-blog-mlr > .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .ks-blog-area .ks-section-title-wrap {
        max-width: 520px !important;

        padding-bottom: 36px !important;
    }


    .ks-blog-area .ks-section-title {
        font-size: clamp(30px, 8vw, 40px) !important;
        line-height: 1.08 !important;
    }


    /* Let heading wrap naturally */
    .ks-blog-area .ks-section-title br {
        display: none !important;
    }


    /* =====================================================
       ONE CARD PER ROW
    ===================================================== */

    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2) {

        grid-template-columns: 1fr !important;

        gap: 26px !important;

        max-width: 480px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4,

    .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4:nth-child(3) {

        grid-column: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
    }


    .ks-blog-area .ks-blog-item {
        max-width: 480px !important;

        margin: 0 auto !important;
    }


    /* CTA */
    .ks-blog-area .dw-home-blog-cta {
        margin-top: 30px !important;
    }


    .ks-blog-area .dw-home-blog-cta .ks-btn-black {
        width: 100% !important;
        max-width: 360px !important;

        min-height: 54px !important;

        justify-content: center !important;
    }

}

/* =========================================================
   HOME BLOG — VIEWPORT-PROPORTIONAL CLOSURE
   Keep the desktop preview within one viewport and turn the
   mobile cards into a compact, swipeable row instead of a
   three-card vertical wall.
========================================================= */

@media (min-width: 1200px) {
    body.dw-home-page .ks-blog-area.dw-home-section {
        padding-block: clamp(34px, 2.8vw, 46px) !important;
    }

    body.dw-home-page .ks-blog-area .ks-section-title-wrap {
        margin-bottom: clamp(22px, 2vw, 30px) !important;
    }

    body.dw-home-page .ks-blog-area .ks-blog-item {
        max-width: 340px;
    }

    body.dw-home-page .ks-blog-area .ks-blog-thumb {
        margin-top: 0;
    }

    body.dw-home-page .ks-blog-area .dw-home-blog-cta {
        margin-top: clamp(22px, 2vw, 30px);
    }
}

/* Keep the DIY section eyebrow, rule, and heading together when its copy
   becomes individual grid items on tablet and mobile. */
@media (max-width: 991px) {
  html body .dw-home-diy-section .dw-home-diy-eyebrow {
    margin-bottom: 0 !important;
  }

  html body .dw-home-diy-section .dw-home-diy-title-line {
    order: 1;
    margin: -18px auto -10px !important;
  }
}

@media (max-width: 767px) {
    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2) {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        max-width: none !important;
        margin-inline: -18px !important;
        padding-inline: 18px 34px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 18px;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)::-webkit-scrollbar {
        display: none;
    }

    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4,
    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4:nth-child(3) {
        flex: 0 0 min(88%, 354px) !important;
        width: min(88%, 354px) !important;
        scroll-snap-align: start;
    }
}

@media (max-width: 426px) {
    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2) {
        gap: 16px !important;
        margin-inline: 0 !important;
        padding-inline: 0 !important;
        scroll-padding-inline: 0;
    }

    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4,
    body.dw-home-page .ks-blog-area.ks-blog-mlr
    > .container-fluid
    > .row:nth-of-type(2)
    > .col-md-4:nth-child(3) {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.dw-home-page .ks-blog-area .row:nth-of-type(2) {
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   PROCESS SLIDER — SMOOTH TRANSITION
========================================================= */

.dw-process-slide {
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


.dw-process-slide.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   PROCESS SLIDER
   FUNCTIONAL SLIDE VISIBILITY
   Keeps existing visual design intact
========================================================= */

.dw-process-slide {
    display: none;
}


/* Active slide */
.dw-process-slide.active {
    display: block;

    animation: dwProcessSlideFade 0.45s ease;
}


/* Smooth entrance */
@keyframes dwProcessSlideFade {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .dw-process-slide.active {
        animation: none;
    }

}

/* =========================================================
   AREAS WE SERVE
   RESPONSIVE — 768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       PANEL / EASY CONTROLS
    ===================================================== */

    .dw-home-areas-panel {
        --areas-rocket-width: 280px;

        /* mueve horizontalmente sin position */
        --areas-rocket-x: 0px;

        /* separación antes del cohete */
        --areas-rocket-top-space: 24px;

        /* cuánto entran los cards encima del cohete */
        --areas-rocket-overlap: -150px;

        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        overflow: hidden !important;
    }


    /* =====================================================
       INTRO / CONTENT
    ===================================================== */

    .dw-home-areas-content {
        order: 1 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        text-align: center !important;
    }


    /* Kicker */
    .dw-home-areas-kicker {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: max-content !important;
        max-width: 100% !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }


    /* Small blue line */
    .dw-home-areas-content
    .dw-global-section-title-line {
        display: block !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .dw-home-areas-content > h3 {
        width: 100% !important;
        max-width: 620px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;

        font-size: clamp(38px, 7vw, 50px) !important;
        line-height: 1.06 !important;
    }


    .dw-home-areas-content > h3 strong {
        display: inline !important;
    }


    /* =====================================================
       MAIN PARAGRAPH
    ===================================================== */

    .dw-home-areas-content > p {
        width: 100% !important;
        max-width: 610px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }


    /* =====================================================
       FIRST CARD
    ===================================================== */

    .dw-home-areas-info-card {
        width: 100% !important;
        max-width: 100% !important;

        margin-top: 34px !important;

        text-align: left !important;
    }


    /* =====================================================
       ROCKET
       NO POSITION PROPERTY

       It remains part of the document flow.
    ===================================================== */

    .dw-home-areas-rocket {
        order: 2 !important;

        display: block !important;

        width: var(--areas-rocket-width) !important;
        max-width: var(--areas-rocket-width) !important;

        height: auto !important;

        margin-top: var(--areas-rocket-top-space) !important;
        margin-right: auto !important;

        /*
         * Negative margin causes following cards
         * to rise over the rocket.
         */
        margin-bottom: var(--areas-rocket-overlap) !important;
        margin-left: auto !important;

        object-fit: contain !important;

        transform:
            translateX(var(--areas-rocket-x)) !important;

        opacity: 78% !important;
        margin-top: 331PX !important;

        pointer-events: none !important;
    }


    /* =====================================================
       TWO CARDS ABOVE THE ROCKET
    ===================================================== */

    .dw-home-areas-la-card {
        order: 3 !important;

        position: relative !important;
        z-index: 3 !important;

        width: 100% !important;
    }


    .dw-home-areas-nation-card {
        order: 4 !important;

        position: relative !important;
        z-index: 3 !important;

        width: 100% !important;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .dw-home-areas-cta-card {
        order: 5 !important;

        position: relative !important;
        z-index: 3 !important;

        width: 100% !important;
    }

}

@media (max-width: 526px) {
    .dw-home-areas-rocket {
     opacity: 0% !important;  
  }
}
/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .dw-home-areas-panel {
        --areas-rocket-width: 230px;
        --areas-rocket-top-space: 20px;
        --areas-rocket-overlap: -120px;
    }


    .dw-home-areas-content > h3 {
        max-width: 480px !important;

        font-size: clamp(34px, 10vw, 43px) !important;
    }


    .dw-home-areas-content > p {
        max-width: 500px !important;
    }

}

/* =========================================================
   ABOUT DELOSWEB
   PREMIUM RESPONSIVE COMPOSITION
   991px AND BELOW
========================================================= */

@media (max-width: 991px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .dw-about-showcase-section {
        position: relative !important;

        padding: 76px 0 82px !important;

        overflow: hidden !important;

        background:
            radial-gradient(
                circle at 50% 68%,
                rgba(45, 128, 183, 0.08),
                transparent 38%
            ),
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fbfdff 55%,
                #f7fbff 100%
            ) !important;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .dw-about-showcase-section .container {
        width: calc(100% - 48px) !important;
        max-width: 820px !important;

        margin: 0 auto !important;

        padding: 0 !important;
    }


    /* =====================================================
       MAIN GRID
    ===================================================== */

    .dw-about-modern-grid {
        position: relative !important;

        display: grid !important;

        grid-template-columns: 1fr !important;

        grid-template-areas:
            "eyebrow"
            "line"
            "title"
            "lead"
            "copy"
            "story"
            "button" !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 0 !important;
    }


    /* =====================================================
       LET INNER CONTENT PARTICIPATE IN MAIN GRID
    ===================================================== */

    .dw-about-content {
        display: contents !important;
    }


    /* =====================================================
       EYEBROW
    ===================================================== */

    .dw-about-content .dw-home-diy-eyebrow,
    .dw-about-content .dw-global-section-eyebrow {
        grid-area: eyebrow !important;

        justify-self: center !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: max-content !important;
        max-width: 100% !important;

        margin: 0 auto 13px !important;

        text-align: center !important;
    }


    /* =====================================================
       TITLE LINE
    ===================================================== */

    .dw-about-content .dw-global-section-title-line {
        grid-area: line !important;

        justify-self: center !important;

        margin: 0 auto 20px !important;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .dw-about-title {
        grid-area: title !important;

        width: 100% !important;
        max-width: 690px !important;

        margin: 0 auto 12px !important;

        text-align: center !important;

        font-size: clamp(36px, 5vw, 48px) !important;
        line-height: 1.04 !important;
    }


    .dw-about-title span {
        display: inline !important;
    }


    /* =====================================================
       LEAD
    ===================================================== */

    .dw-about-lead {
        grid-area: lead !important;

        width: 100% !important;
        max-width: 680px !important;

        margin: 0 auto 25px !important;

        text-align: center !important;

        line-height: 1.25 !important;
    }


    /* =====================================================
       COPY
    ===================================================== */

    .dw-about-content .text {
        grid-area: copy !important;

        position: relative !important;

        width: 100% !important;
        max-width: 700px !important;

        margin: 0 auto 40px !important;

        text-align: center !important;

        z-index: 3 !important;
    }


    .dw-about-content .text p {
        width: 100% !important;
        max-width: 700px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .dw-about-content .text p + p {
        margin-top: 18px !important;
    }


    /* =====================================================
       STORY COMPOSITION

       Rocket + Mission/Vision now occupy same area.
    ===================================================== */

    .dw-about-visual-wrap,
    .dw-about-side-card {
        grid-area: story !important;
    }


    /* =====================================================
       VISUAL BACKDROP
    ===================================================== */

    .dw-about-visual-wrap {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 760px !important;

        min-height: 390px !important;
        height: 390px !important;

        margin: 0 auto !important;

        overflow: hidden !important;

        border-radius: 34px !important;

        background:
            radial-gradient(
                circle at 50% 38%,
                rgba(67, 183, 255, 0.13),
                transparent 36%
            ),
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.95),
                rgba(241, 248, 255, 0.82)
            ) !important;

        border:
            1px solid rgba(45, 128, 183, 0.10) !important;

        box-shadow:
            0 24px 70px rgba(0, 0, 56, 0.07) !important;

        transform: none !important;

        pointer-events: none !important;

        z-index: 1 !important;
    }


    /* subtle internal halo */
    .dw-about-visual-wrap::before {
        content: "" !important;

        position: absolute !important;

        top: 25px !important;
        left: 50% !important;

        width: 430px !important;
        height: 260px !important;

        transform: translateX(-50%) !important;

        border-radius: 50% !important;

        background:
            radial-gradient(
                circle,
                rgba(67, 183, 255, 0.12),
                transparent 68%
            ) !important;

        filter: blur(8px) !important;

        pointer-events: none !important;
    }


    /* =====================================================
       ROCKET WATERMARK
    ===================================================== */

    .dw-about-rocket-img {
        position: absolute !important;

        top: 42% !important;
        left: 50% !important;

        width: 420px !important;
        max-width: 58vw !important;

        height: auto !important;

        margin: 0 !important;

        object-fit: contain !important;

        opacity: 0.23 !important;

        transform:
            translate(-50%, -50%) !important;

        filter:
            saturate(0.82)
            contrast(0.96)
            drop-shadow(
                0 18px 40px rgba(45, 128, 183, 0.10)
            ) !important;

        z-index: 1 !important;
    }


    /* =====================================================
       SPARKS
    ===================================================== */

    .dw-about-spark {
        opacity: 0.22 !important;

        z-index: 2 !important;
    }


    /* =====================================================
       MISSION / VISION CARD

       Overlay inside the same visual composition.
    ===================================================== */

    .dw-about-side-card {
        position: relative !important;

        align-self: end !important;
        justify-self: center !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            1px
            minmax(0, 1fr) !important;

        align-items: stretch !important;

        width: calc(100% - 56px) !important;
        max-width: 700px !important;

        margin: 0 auto 26px !important;

        padding: 25px 26px !important;

        border-radius: 22px !important;

        border:
            1px solid rgba(45, 128, 183, 0.14) !important;

        background:
            rgba(255, 255, 255, 0.88) !important;

        box-shadow:
            0 20px 55px rgba(0, 0, 56, 0.10) !important;

        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;

        transform: none !important;

        box-sizing: border-box !important;

        z-index: 5 !important;
    }


    /* =====================================================
       MISSION / VISION ITEM
    ===================================================== */

    .dw-about-side-item {
        width: 100% !important;
        min-width: 0 !important;

        padding: 2px 22px !important;

        box-sizing: border-box !important;
    }


    .dw-about-side-heading {
        display: flex !important;

        align-items: center !important;

        gap: 12px !important;

        margin: 0 0 13px !important;
    }


    .dw-about-side-heading i {
        flex: 0 0 auto !important;

        display: grid !important;

        place-items: center !important;

        width: 38px !important;
        height: 38px !important;

        border-radius: 50% !important;

        background:
            rgba(45, 128, 183, 0.08) !important;
    }


    .dw-about-side-heading h4 {
        margin: 0 !important;

        line-height: 1.15 !important;
    }


    .dw-about-side-item p {
        margin: 0 !important;

        line-height: 1.6 !important;
    }


    /* =====================================================
       DIVIDER
    ===================================================== */

    .dw-about-side-divider {
        display: block !important;

        width: 1px !important;
        height: 100% !important;

        margin: 0 !important;

        background:
            linear-gradient(
                180deg,
                transparent,
                rgba(45, 128, 183, 0.18),
                transparent
            ) !important;
    }


    /* =====================================================
       BUTTON LAST
    ===================================================== */

    .dw-about-more-btn {
        grid-area: button !important;

        justify-self: center !important;

        position: relative !important;

        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 12px !important;

        width: auto !important;
        min-width: 225px !important;

        margin: 34px auto 0 !important;

        z-index: 6 !important;
    }

}


/* =========================================================
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {

    .dw-about-showcase-section {
        padding: 66px 0 70px !important;
    }


    .dw-about-showcase-section .container {
        width: calc(100% - 36px) !important;
    }


    .dw-about-content .text {
        margin-bottom: 34px !important;
    }


    /* Story area */
    .dw-about-visual-wrap {
        min-height: 360px !important;
        height: 360px !important;

        border-radius: 28px !important;
    }


    .dw-about-rocket-img {
        width: 360px !important;
        max-width: 65vw !important;

        top: 39% !important;

        opacity: 0.21 !important;
    }


    .dw-about-side-card {
        width: calc(100% - 34px) !important;

        margin-bottom: 22px !important;

        padding: 23px 18px !important;
    }


    .dw-about-side-item {
        padding: 0 15px !important;
    }

}


/* =========================================================
   620px AND BELOW
   MISSION + VISION STACK
========================================================= */

@media (max-width: 620px) {

    /*
       More vertical space because the internal card
       changes from two columns to stacked.
    */

    .dw-about-visual-wrap {
        min-height: 500px !important;
        height: 500px !important;
    }


    .dw-about-rocket-img {
        top: 29% !important;

        width: 320px !important;
        max-width: 72vw !important;

        opacity: 0.18 !important;
    }


    .dw-about-side-card {
        grid-template-columns: 1fr !important;

        gap: 19px !important;

        width: calc(100% - 28px) !important;
        max-width: 460px !important;

        padding: 24px !important;

        margin-bottom: 22px !important;
    }


    .dw-about-side-item {
        padding: 0 !important;

        text-align: center !important;
    }


    .dw-about-side-heading {
        justify-content: center !important;
    }


    /* Horizontal separator */
    .dw-about-side-divider {
        width: 100% !important;
        height: 1px !important;

        background:
            linear-gradient(
                90deg,
                transparent,
                rgba(45, 128, 183, 0.18),
                transparent
            ) !important;
    }

}


/* =========================================================
   575px AND BELOW
========================================================= */

@media (max-width: 575px) {

    .dw-about-showcase-section {
        padding: 58px 0 62px !important;
    }


    .dw-about-showcase-section .container {
        width: calc(100% - 28px) !important;
    }


    .dw-about-title {
        font-size: clamp(32px, 9vw, 40px) !important;
    }


    .dw-about-lead {
        margin-bottom: 21px !important;
    }


    .dw-about-content .text {
        margin-bottom: 30px !important;
    }


    .dw-about-content .text p {
        line-height: 1.65 !important;
    }


    /* =====================================================
       VISUAL COMPOSITION
    ===================================================== */

    .dw-about-visual-wrap {
        min-height: 470px !important;
        height: 470px !important;

        border-radius: 24px !important;
    }


    .dw-about-rocket-img {
        top: 26% !important;

        width: 270px !important;
        max-width: 76vw !important;

        opacity: 0.16 !important;
    }


    /* =====================================================
       MISSION / VISION GLASS CARD
    ===================================================== */

    .dw-about-side-card {
        width: calc(100% - 20px) !important;

        padding: 22px 18px !important;

        border-radius: 19px !important;

        margin-bottom: 18px !important;
    }


    /* =====================================================
       BUTTON
    ===================================================== */

    .dw-about-more-btn {
        min-width: 210px !important;

        margin-top: 28px !important;
    }

}

/* =========================================================
   ABOUT DELOSWEB
   RESPONSIVE REFINED COMPOSITION
   991px and below
========================================================= */

@media (max-width: 991px) {

  .dw-about-showcase-section {
    padding: 76px 0 82px !important;
    overflow: hidden !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfdff 55%, #f7fbff 100%) !important;
  }

  .dw-about-showcase-section .container,
  .dw-about-showcase-section .container-1450 {
    width: calc(100% - 48px) !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .dw-about-modern-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "eyebrow"
      "line"
      "title"
      "lead"
      "story"
      "button" !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  .dw-about-content {
    display: contents !important;
  }

  .dw-about-content .dw-home-diy-eyebrow,
  .dw-about-content .dw-global-section-eyebrow {
    grid-area: eyebrow !important;
    justify-self: center !important;
    margin: 0 auto 12px !important;
    text-align: center !important;
  }

  .dw-about-content .dw-global-section-title-line {
    grid-area: line !important;
    justify-self: center !important;
    margin: 0 auto 18px !important;
  }

  .dw-about-title {
    grid-area: title !important;
    max-width: 680px !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
    font-size: clamp(34px, 5vw, 48px) !important;
    line-height: 1.05 !important;
  }

  .dw-about-lead {
    grid-area: lead !important;
    max-width: 700px !important;
    margin: 0 auto 26px !important;
    text-align: center !important;
    line-height: 1.24 !important;
  }

  /* Los 3 elementos comparten la misma composición */
  .dw-about-content .text,
  .dw-about-visual-wrap,
  .dw-about-side-card {
    grid-area: story !important;
  }

  /* Cuadro general de composición */
  .dw-about-visual-wrap {
    position: relative !important;
    width: 100% !important;
    max-width: 780px !important;
    min-height: 560px !important;
    margin: 0 auto !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 35%, rgba(67, 183, 255, 0.10), transparent 36%),
      linear-gradient(180deg, rgba(248, 252, 255, 0.96), rgba(241, 248, 255, 0.88)) !important;
    border: 1px solid rgba(45, 128, 183, 0.10) !important;
    box-shadow: 0 22px 60px rgba(0, 0, 56, 0.07) !important;
    z-index: 1 !important;
  }

  /* Párrafos ahora dentro de la composición */
  .dw-about-content .text {
    position: relative !important;
    align-self: start !important;
    justify-self: center !important;
    width: calc(100% - 64px) !important;
    max-width: 690px !important;
    margin: 28px auto 0 !important;
    padding: 22px 24px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(45, 128, 183, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    text-align: center !important;
    z-index: 7 !important;
  }

  .dw-about-content .text p {
    max-width: 620px !important;
    margin: 0 auto !important;
    line-height: 1.65 !important;
  }

  .dw-about-content .text p + p {
    margin-top: 16px !important;
  }

  /* Cohete completo y como marca de agua */
  .dw-about-rocket-img {
    position: absolute !important;
    top: 54% !important;
    left: 50% !important;
    width: 395px !important;
    max-width: 58vw !important;
    height: auto !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0.18 !important;
    object-fit: contain !important;
    z-index: 2 !important;
    filter: drop-shadow(0 14px 30px rgba(45, 128, 183, 0.08)) !important;
  }

  .dw-about-spark {
    opacity: 0.22 !important;
    z-index: 3 !important;
  }

  /* Mission / Vision abajo dentro de la composición */
  .dw-about-side-card {
    position: relative !important;
    align-self: end !important;
    justify-self: center !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) !important;
    align-items: stretch !important;
    width: calc(100% - 56px) !important;
    max-width: 720px !important;
    margin: 0 auto 28px !important;
    padding: 24px 24px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    border: 1px solid rgba(45, 128, 183, 0.14) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 56, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 8 !important;
  }

  .dw-about-side-item {
    padding: 4px 22px !important;
    min-width: 0 !important;
  }

  .dw-about-side-heading {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 0 12px !important;
  }

  .dw-about-side-heading i {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(45, 128, 183, 0.08) !important;
  }

  .dw-about-side-heading h4 {
    margin: 0 !important;
    line-height: 1.14 !important;
  }

  .dw-about-side-item p {
    margin: 0 !important;
    line-height: 1.58 !important;
  }

  .dw-about-side-divider {
    display: block !important;
    width: 1px !important;
    height: 100% !important;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(45, 128, 183, 0.18),
      transparent
    ) !important;
  }

  .dw-about-more-btn {
    grid-area: button !important;
    justify-self: center !important;
    margin: 28px auto 0 !important;
    min-width: 220px !important;
    position: relative !important;
    z-index: 10 !important;
  }
}


/* =========================================================
   767px and below
========================================================= */

@media (max-width: 767px) {

  .dw-about-showcase-section .container,
  .dw-about-showcase-section .container-1450 {
    width: calc(100% - 36px) !important;
  }

  .dw-about-visual-wrap {
    min-height: 600px !important;
    border-radius: 28px !important;
  }

  .dw-about-content .text {
    width: calc(100% - 40px) !important;
    padding: 20px 18px !important;
    margin-top: 22px !important;
  }

  .dw-about-rocket-img {
    top: 52% !important;
    width: 340px !important;
    max-width: 66vw !important;
    opacity: 0.17 !important;
  }

  .dw-about-side-card {
    width: calc(100% - 34px) !important;
    padding: 20px 18px !important;
    margin-bottom: 22px !important;
  }

  .dw-about-side-item {
    padding: 0 12px !important;
  }
}


/* =========================================================
   620px and below
========================================================= */

@media (max-width: 620px) {

  .dw-about-visual-wrap {
    min-height: 700px !important;
  }

  .dw-about-content .text {
    width: calc(100% - 28px) !important;
    margin-top: 18px !important;
    padding: 18px 16px !important;
  }

  .dw-about-rocket-img {
    top: 44% !important;
    width: 290px !important;
    max-width: 74vw !important;
    opacity: 0.15 !important;
  }

  .dw-about-side-card {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: calc(100% - 24px) !important;
    max-width: 470px !important;
    padding: 22px 18px !important;
    margin-bottom: 18px !important;
  }

  .dw-about-side-item {
    padding: 0 !important;
    text-align: center !important;
  }

  .dw-about-side-heading {
    justify-content: center !important;
  }

  .dw-about-side-divider {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(45, 128, 183, 0.18),
      transparent
    ) !important;
  }
}


/* =========================================================
   575px and below
========================================================= */

@media (max-width: 575px) {

  .dw-about-showcase-section {
    padding: 58px 0 64px !important;
  }

  .dw-about-showcase-section .container,
  .dw-about-showcase-section .container-1450 {
    width: calc(100% - 28px) !important;
  }

  .dw-about-title {
    font-size: clamp(31px, 9vw, 40px) !important;
  }

  .dw-about-lead {
    margin-bottom: 22px !important;
  }

  .dw-about-visual-wrap {
    min-height: 660px !important;
    border-radius: 24px !important;
  }

  .dw-about-content .text {
    width: calc(100% - 20px) !important;
    padding: 16px 14px !important;
  }

  .dw-about-rocket-img {
    width: 250px !important;
    max-width: 76vw !important;
    top: 41% !important;
    opacity: 0.14 !important;
  }

  .dw-about-side-card {
    width: calc(100% - 16px) !important;
    border-radius: 20px !important;
    padding: 20px 16px !important;
  }

  .dw-about-more-btn {
    min-width: 205px !important;
    margin-top: 24px !important;
  }
}


/* =========================================================
   ABOUT SECTION
   FIX EXCESSIVE VERTICAL GAP
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       Make the whole visual composition more compact
    ----------------------------------------------------- */

    .dw-about-visual-wrap {
        min-height: 500px !important;
        height: 500px !important;

        border-radius: 28px !important;
    }


    /* -----------------------------------------------------
       Paragraph card
       Keep it close to the top of the composition
    ----------------------------------------------------- */

    .dw-about-content .text {
        width: calc(100% - 36px) !important;
        max-width: 620px !important;

        margin: 18px auto 0 !important;
        padding: 18px 20px !important;
    }


    .dw-about-content .text p {
        margin: 0 auto !important;
    }


    .dw-about-content .text p + p {
        margin-top: 14px !important;
    }


    /* -----------------------------------------------------
       Rocket
       Move it into the center without requiring a huge area
    ----------------------------------------------------- */

    .dw-about-rocket-img {
        top: 53% !important;
        left: 50% !important;

        width: 300px !important;
        max-width: 58vw !important;

        opacity: 0.15 !important;

        transform: translate(-50%, -50%) !important;
    }


    /* -----------------------------------------------------
       Mission / Vision
       Pull it upward so it visually connects with rocket
    ----------------------------------------------------- */

    .dw-about-side-card {
        align-self: end !important;

        width: calc(100% - 30px) !important;
        max-width: 620px !important;

        margin: 0 auto 18px !important;

        padding: 20px 18px !important;

        transform: translateY(-6px) !important;
    }

}


/* =========================================================
   620px AND BELOW
========================================================= */

@media (max-width: 620px) {

    /*
       Mission / Vision becomes stacked,
       so we need some extra height — but not 700px.
    */

    .dw-about-visual-wrap {
        min-height: 610px !important;
        height: 610px !important;
    }


    .dw-about-content .text {
        width: calc(100% - 26px) !important;

        margin-top: 14px !important;

        padding: 17px 16px !important;
    }


    .dw-about-rocket-img {
        top: 45% !important;

        width: 250px !important;
        max-width: 62vw !important;

        opacity: 0.13 !important;
    }


    .dw-about-side-card {
        width: calc(100% - 22px) !important;

        margin-bottom: 14px !important;

        gap: 16px !important;

        padding: 20px 18px !important;

        transform: none !important;
    }

}


/* =========================================================
   575px AND BELOW
========================================================= */

@media (max-width: 575px) {

    .dw-about-visual-wrap {
        min-height: 590px !important;
        height: 590px !important;
    }


    .dw-about-content .text {
        width: calc(100% - 18px) !important;

        margin-top: 12px !important;

        padding: 16px 14px !important;
    }


    .dw-about-rocket-img {
        top: 43% !important;

        width: 220px !important;
        max-width: 65vw !important;

        opacity: 0.12 !important;
    }


    .dw-about-side-card {
        width: calc(100% - 16px) !important;

        margin-bottom: 12px !important;

        padding: 18px 16px !important;
    }

}

/* =========================================================
   ABOUT SECTION
   SMALL MOBILE SPACING FIX
   453px AND BELOW
========================================================= */

@media (max-width: 453px) {

    /* -----------------------------------------------------
       Give the story composition more vertical breathing
    ----------------------------------------------------- */

    .dw-about-visual-wrap {
        min-height: 650px !important;
        height: 650px !important;
    }


    /* -----------------------------------------------------
       Paragraph block
       Give it more room below
    ----------------------------------------------------- */

    .dw-about-content .text {
        width: calc(100% - 18px) !important;
        max-width: 100% !important;

        margin: 10px auto 0 !important;

        padding: 16px 14px 24px !important;

        box-sizing: border-box !important;
    }


    .dw-about-content .text p {
        line-height: 1.65 !important;
    }


    .dw-about-content .text p + p {
        margin-top: 4px !important;
    }


    /* -----------------------------------------------------
       Rocket watermark
       Move it slightly lower so it doesn't crowd the copy
    ----------------------------------------------------- */

    .dw-about-rocket-img {
        top: 46% !important;

        width: 210px !important;
        max-width: 62vw !important;

        opacity: 0.10 !important;
    }


    /* -----------------------------------------------------
       Mission / Vision card
       Move it down and give it separation from the copy
    ----------------------------------------------------- */

    .dw-about-side-card {
        width: calc(100% - 18px) !important;
        max-width: 390px !important;

        margin: 0 auto 14px !important;

        padding: 22px 16px !important;

        transform: translateY(26px) !important;

        border-radius: 20px !important;
    }


    /* More internal separation between Mission / Vision */
    .dw-about-side-card {
        gap: 22px !important;
    }


    .dw-about-side-item {
        padding: 0 4px !important;
    }


    .dw-about-side-heading {
        margin-bottom: 14px !important;
    }


    .dw-about-side-item p {
        line-height: 1.6 !important;
    }


    .dw-about-side-divider {
        margin: 4px 0 !important;
    }

}


/* =========================================================
   EXTRA SMALL — 390px AND BELOW
========================================================= */

@media (max-width: 390px) {

    .dw-about-visual-wrap {
        min-height: 680px !important;
        height: 680px !important;
    }


    .dw-about-content .text {
        width: calc(100% - 14px) !important;

        padding: 0px 12px 26px !important;
    }


    .dw-about-side-card {
        width: calc(100% - 14px) !important;

        transform: translateY(30px) !important;

        padding: 20px 14px !important;

        gap: 24px !important;
    }


    .dw-about-rocket-img {
        top: 47% !important;

        width: 195px !important;

        opacity: 0.09 !important;
    }

}


/* =========================================================
   ABOUT SECTION
   FIX 404px → 391px
   Bridge between 453px and 390px layouts
========================================================= */

@media (min-width: 391px) and (min-width: 390px) and (max-width: 404px) {

    /* More room for the complete composition */
    .dw-about-visual-wrap {
        min-height: 680px !important;
        height: 680px !important;
    }


    /* Paragraph area */
    .dw-about-content .text {
        width: calc(100% - 14px) !important;
        max-width: 100% !important;

        margin: 8px auto 0 !important;

        padding: 15px 12px 28px !important;

        box-sizing: border-box !important;
    }


    .dw-about-content .text p {
        line-height: 1.65 !important;
    }


    .dw-about-content .text p + p {
        margin-top: 15px !important;
    }


    /* Rocket watermark */
    .dw-about-rocket-img {
        top: 47% !important;

        width: 200px !important;
        max-width: 60vw !important;

        height: auto !important;

        opacity: 0.09 !important;

        transform: translate(-50%, -50%) !important;
    }


    /* Mission / Vision
       Pull it farther away from paragraph
    */
    .dw-about-side-card {
        width: calc(100% - 14px) !important;
        max-width: 380px !important;

        margin: 0 auto 12px !important;

        padding: 20px 14px !important;

        gap: 24px !important;

        transform: translateY(32px) !important;

        border-radius: 20px !important;

        box-sizing: border-box !important;
    }


    .dw-about-side-item {
        padding: 0 3px !important;
    }


    .dw-about-side-heading {
        margin-bottom: 14px !important;
    }


    .dw-about-side-divider {
        margin: 5px 0 !important;
    }

}

/* =========================================================
   ABOUT SECTION — EXTRA-SMALL MOBILE FLOW
   Keep copy separate from the Mission / Vision composition.
========================================================= */

@media (max-width: 453px) {
    .dw-about-modern-grid {
        grid-template-areas:
            "eyebrow"
            "line"
            "title"
            "lead"
            "copy"
            "story"
            "button" !important;
    }

    .dw-about-content .text {
        grid-area: copy !important;

        align-self: auto !important;
        justify-self: center !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto 24px !important;
        padding: 18px 16px !important;
    }

    .dw-about-visual-wrap,
    .dw-about-side-card {
        grid-area: story !important;
    }

    .dw-about-visual-wrap {
        min-height: 410px !important;
        height: 410px !important;
    }

    .dw-about-side-card {
        align-self: end !important;

        margin: 0 auto 16px !important;

        transform: none !important;
    }

    .dw-about-rocket-img {
        top: 35% !important;
    }
}

/* Preserve readable title gutters in the Who We Serve section on narrow
   screens, matching the spacing rhythm used by the About section. */
@media (max-width: 575px) {
    body.dw-home-page .dw-who-serve-section > .auto-container {
        padding-right: var(--dw-page-gutter) !important;
        padding-left: var(--dw-page-gutter) !important;
    }

    body.dw-home-page .dw-who-serve-heading {
        width: 100%;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    body.dw-home-page .dw-who-serve-heading h2 {
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(27px, 7.5vw, 32px);
        line-height: 1.12;
        letter-spacing: -0.025em;
        text-wrap: balance;
    }
}
