/* ======================================================
   WHO WE ARE PAGE - DELOSWEB
   Elegant / editorial / minimalist
====================================================== */

.dw-wwa-page {
  --ink: var(--theme-color-dark);
  --muted: rgba(var(--theme-color-dark-rgb), 0.62);
  --soft-text: rgba(var(--theme-color-dark-rgb), 0.74);
  --line: rgba(var(--theme-color-dark-rgb), 0.10);
  --accent: var(--theme-color-yellow);
  --soft: var(--theme-color-gray);
  background: var(--theme-color-white);
}

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

.dw-wwa-container-wide {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ---------- Hero ---------- */
.dw-wwa-hero {
  padding: 140px 0 64px;
}

.dw-wwa-hero p {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--soft-text);
  font-size: var(--body-font-size-lead);
  line-height: var(--body-line-height-lead);
}

.dw-wwa-hero p:last-child {
  margin-bottom: 0;
}

/* ---------- Section ---------- */
.dw-wwa-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.dw-wwa-section.is-plain {
  border-top: 0;
  padding-top: 0;
}

.dw-wwa-section p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--soft-text);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-wwa-section p:last-child {
  margin-bottom: 0;
}

/* ---------- Mission blockquote ---------- */
.dw-wwa-mission {
  margin: 8px 0 0;
  padding: 6px 0 6px 30px;
  border-left: 3px solid var(--accent);
}

.dw-wwa-mission p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* ---------- Do / Don't dual lists ---------- */
.dw-wwa-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 6px;
}

.dw-wwa-panel {
  padding: 34px 34px 36px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--theme-color-white);
}

.dw-wwa-panel.is-soft {
  background: var(--soft);
}

.dw-wwa-panel h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.dw-wwa-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dw-wwa-list li {
  position: relative;
  padding: 0 0 12px 30px;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.55;
}

.dw-wwa-list li:last-child {
  padding-bottom: 0;
}

.dw-wwa-list.is-do li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--theme-color-yellow-rgb), 0.14);
  box-shadow: inset 0 0 0 5px var(--accent);
}

.dw-wwa-list.is-dont li::before {
  content: "\00d7";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--theme-color-dark-rgb), 0.4);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.dw-wwa-note {
  margin-top: 30px;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--theme-color-white);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ---------- Options (custom vs ready-to-go) ---------- */
.dw-wwa-subhead {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: var(--heading-font-family);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.dw-wwa-section .dw-wwa-bullets {
  max-width: 720px;
  margin: 6px 0 18px;
  padding: 0;
  list-style: none;
}

.dw-wwa-bullets li {
  position: relative;
  padding: 0 0 11px 26px;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.6;
}

.dw-wwa-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Final CTA ---------- */
.dw-wwa-final {
  margin-top: 8px;
  padding: 54px 44px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.dw-wwa-final p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

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

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

.dw-wwa-btn:hover {
  background: var(--accent);
  color: var(--theme-color-white);
  transform: translateY(-2px);
}

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

.dw-wwa-btn.is-ghost:hover {
  background: var(--ink);
  color: var(--theme-color-white);
  border-color: var(--ink);
}

.dw-wwa-bottom-space {
  padding-bottom: 110px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .dw-wwa-hero {
    padding: 104px 0 48px;
  }

  .dw-wwa-section {
    padding: 48px 0;
  }

  .dw-wwa-dual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dw-wwa-panel {
    padding: 28px 24px;
  }

  .dw-wwa-final {
    padding: 40px 24px;
  }

  .dw-wwa-bottom-space {
    padding-bottom: 80px;
  }
}

/* ======================================================
   IMAGES / VIDEO / LOGOS
====================================================== */

/* Hero two-column with video */
.dw-wwa-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.dw-wwa-hero-grid .dw-wwa-hero-text h1 {
  max-width: 18ch;
}

.dw-wwa-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(var(--theme-color-dark-rgb), 0.16);
  border: 1px solid var(--line);
}

.dw-wwa-video-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.dw-wwa-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--theme-color-dark-rgb), 0) 40%, rgba(var(--theme-color-dark-rgb), 0.45) 100%);
}

.dw-wwa-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(var(--theme-color-dark-rgb), 0.28);
  transition: transform 0.3s ease, color 0.3s ease;
}

.dw-wwa-play:hover {
  transform: translate(-50%, -50%) scale(1.07);
  color: var(--ink);
}

.dw-wwa-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: dwWwaPulse 2.2s ease-out infinite;
}

.dw-wwa-play svg {
  margin-left: 4px;
}

@keyframes dwWwaPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.dw-wwa-video-tag {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: var(--theme-color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(var(--theme-color-dark-rgb), 0.4);
}

/* Two-column media rows (image + text) */
.dw-wwa-media {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.dw-wwa-media.is-reverse .dw-wwa-media-figure {
  order: 2;
}

.dw-wwa-media-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(var(--theme-color-dark-rgb), 0.12);
  border: 1px solid var(--line);
}

.dw-wwa-media-figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.dw-wwa-media .dw-wwa-media-body h2 {
  margin-top: 0;
}

.dw-wwa-media .dw-wwa-media-body p {
  max-width: none;
}

/* Options visual pair */
.dw-wwa-figure-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 8px 0 30px;
}

.dw-wwa-figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(var(--theme-color-dark-rgb), 0.08);
}

.dw-wwa-figure img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  display: block;
}

.dw-wwa-figure span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(var(--theme-color-dark-rgb), 0.82);
  color: var(--theme-color-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Trusted-by logo strip */
.dw-wwa-logos {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.dw-wwa-logos-label {
  text-align: center;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dw-wwa-logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 38px 54px;
}

.dw-wwa-logos-grid img {
  height: 38px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.dw-wwa-logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Video modal */
.dw-wwa-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.dw-wwa-modal.is-open {
  display: flex;
}

.dw-wwa-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 16, 0.78);
  backdrop-filter: blur(4px);
}

.dw-wwa-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.dw-wwa-modal-box video {
  width: 100%;
  display: block;
  background: var(--theme-color-black);
}

.dw-wwa-modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-white);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

body.dw-wwa-modal-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .dw-wwa-hero-grid,
  .dw-wwa-media {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dw-wwa-media.is-reverse .dw-wwa-media-figure {
    order: 0;
  }
}

@media (max-width: 767px) {
  .dw-wwa-figure-pair {
    grid-template-columns: 1fr;
  }

  .dw-wwa-video-card img,
  .dw-wwa-media-figure img {
    min-height: 240px;
  }

  .dw-wwa-logos-grid {
    gap: 26px 34px;
  }

  .dw-wwa-logos-grid img {
    height: 30px;
  }
}

.header-style-eight .main-menu .navigation > li > a, .header-style-eight .main-menu .navigation .dropdown .dropdown-btn {
    color: var(--theme-color-white) !important;
    font-size: 15px;
    line-height: 1;

    letter-spacing: 0.02em;
    text-transform: uppercase;
}



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

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

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

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

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

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

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

.sticky-header .navigation li a {
  color: var(--theme-color-dark);
  font-weight: 700;
}


.sticky-header,
.sticky-header a,
.sticky-header .navigation li a {
  color: var(--theme-color-dark) !important;
}

/* .sticky-header * {
  color: var(--theme-color-white) !important;
} */

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

/* ================================
   DelosWeb About Launch Section
================================ */

.dw-about-launch-section {
  position: relative;
  padding: 105px 48px 115px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 12%, rgba(var(--theme-color1-rgb), 0.08), transparent 320px),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
}

.dw-about-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

/* ================================
   Top Hero Grid
================================ */

.dw-about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.62fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(var(--theme-color-dark-rgb), 0.08);
}

/* Left Content */
.dw-about-hero-content {
  position: relative;
  z-index: 5;
}

.dw-about-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--theme-color-yellow);
  font-size: 14px;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dw-about-hero-content h1 {
  color: var(--theme-color-dark);
  font-size: var(--h1-font-size);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 10px;
}

.dw-about-hero-content h1 span {
  color: var(--theme-color-yellow);
}

.dw-about-hero-content h2 {
  color: var(--theme-color-yellow);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.dw-about-hero-content p {
  max-width: 565px;
  margin: 0 0 16px;
  color: rgba(var(--theme-color-dark-rgb), 0.82);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-about-hero-content p:first-of-type {
  font-size: var(--body-font-size-lead);
  line-height: var(--body-line-height-lead);
}

/* Feature Row */
.dw-about-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 38px;
}

.dw-about-feature-item {
  position: relative;
}

.dw-about-feature-item span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0e66ff;
  font-size: 28px;
  margin-bottom: 10px;
}

.dw-about-feature-item strong {
  display: block;
  color: var(--theme-color-dark);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dw-about-feature-item small {
  display: block;
  color: rgba(var(--theme-color-dark-rgb), 0.7);
  font-size: 12px;
  line-height: 1.35;
}

/* ================================
   Center Rocket
================================ */

.dw-about-rocket-wrap {
  position: relative;
  min-height: 485px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 4;
}

.dw-about-rocket-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 360px;
  height: 110px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.26), transparent 68%);
  filter: blur(6px);
  animation: dwAboutCloudGlow 4.8s ease-in-out infinite;
}

.dw-about-rocket-wrap img {
  position: relative;
  z-index: 3;
  width: min(440px, 100%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 28px 38px rgba(var(--theme-color-dark-rgb), 0.14))
    drop-shadow(0 0 28px rgba(var(--theme-color1-rgb), 0.2));
  animation: dwAboutRocketFloat 5.5s ease-in-out infinite;
}

/* Stars */
.dw-about-stars span {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  animation: dwAboutTwinkle 2.6s ease-in-out infinite;
}

.dw-about-stars span::before,
.dw-about-stars span::after {
  content: "";
  position: absolute;
  background: var(--theme-color-yellow);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(var(--theme-color1-rgb), 0.35);
}

.dw-about-stars span::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.dw-about-stars span::after {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.dw-about-stars span:nth-child(1) {
  left: 7%;
  top: 28%;
}

.dw-about-stars span:nth-child(2) {
  right: 14%;
  top: 18%;
  animation-delay: 0.4s;
}

.dw-about-stars span:nth-child(3) {
  left: 18%;
  bottom: 34%;
  animation-delay: 0.8s;
}

.dw-about-stars span:nth-child(4) {
  right: 8%;
  bottom: 28%;
  animation-delay: 1.2s;
}

/* ================================
   Mission Vision Card
================================ */

.dw-about-mission-card {
  position: relative;
  z-index: 5;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 252, 0.96));
  box-shadow:
    0 24px 50px rgba(var(--theme-color-dark-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: dwAboutCardFloat 6s ease-in-out infinite;
}

.dw-about-mission-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}

.dw-about-mission-title span {
  color: #0e66ff;
  font-size: 26px;
  line-height: 1;
}

.dw-about-mission-title h3 {
  color: var(--theme-color-dark);
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

.dw-about-mission-item p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

.dw-about-mission-divider {
  width: 100%;
  height: 1px;
  margin: 26px 0;
  background: rgba(var(--theme-color-dark-rgb), 0.1);
}

/* ================================
   Difference Box
================================ */

.dw-about-difference-box {
  position: relative;
  margin-top: 45px;
  padding: 45px 44px 26px;
  border-radius: 0;
  overflow: hidden;
}

.dw-about-difference-header {
  text-align: center;
  margin-bottom: 30px;
}

.dw-about-difference-header h2 {
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.dw-about-difference-header p {
  margin: 0 auto;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

/* Difference Layout */
.dw-about-difference-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.dw-about-difference-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-self: center;
}

.dw-about-difference-card {
  min-height: 210px;
  padding: 28px 18px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.15);
  background: var(--theme-color-white);
  box-shadow: 0 18px 35px rgba(var(--theme-color-dark-rgb), 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.dw-about-difference-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--theme-color1-rgb), 0.35);
  box-shadow: 0 24px 45px rgba(var(--theme-color-dark-rgb), 0.1);
}

.dw-about-difference-card span {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0e66ff;
  font-size: 42px;
  margin-bottom: 18px;
}

.dw-about-difference-card h3 {
  color: var(--theme-color-dark);
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dw-about-difference-card p {
  margin: 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* ================================
   Story Card
================================ */

.dw-about-story-card {
  position: relative;
  min-height: 265px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 34px 210px 34px 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(var(--theme-color1-rgb), 0.35), transparent 190px),
    linear-gradient(135deg, var(--theme-color-dark) 0%, #0b2c7c 100%);
  box-shadow: 0 22px 46px rgba(var(--theme-color-dark-rgb), 0.18);
}

.dw-about-story-card::before {
  content: "";
  position: absolute;
  right: 115px;
  top: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #7dd7ff 0%, var(--theme-color-yellow) 45%, #08236f 100%);
  box-shadow: 0 0 25px rgba(var(--theme-color1-rgb), 0.45);
  animation: dwAboutPlanetFloat 6s ease-in-out infinite;
}

.dw-about-story-content {
  position: relative;
  z-index: 3;
}

.dw-about-story-content h3 {
  color: var(--theme-color-white);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.dw-about-story-content p {
  max-width: 500px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-about-story-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  padding: 0 26px;
  color: var(--theme-color-white);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--theme-color-yellow) 0%, #0e66ff 100%);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.dw-about-story-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(14, 102, 255, 0.28);
}

.dw-about-story-rocket {
  position: absolute;
  right: -4px;
  bottom: -26px;
  z-index: 2;
  width: 200px;
  animation: dwAboutStoryRocket 5s ease-in-out infinite;
}

.dw-about-story-rocket img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 24px rgba(var(--theme-color-dark-rgb), 0.35));
}

/* ================================
   Stats Row
================================ */

.dw-about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 20px 26px;
  border-radius: 14px;
  background: var(--theme-color-white);
  box-shadow: 0 18px 38px rgba(var(--theme-color-dark-rgb), 0.07);
}

.dw-about-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  border-right: 1px solid rgba(var(--theme-color-dark-rgb), 0.1);
}

.dw-about-stat-item:last-child {
  border-right: 0;
}

.dw-about-stat-item span {
  color: var(--theme-color1);
  font-size: 34px;
  line-height: 1;
}

.dw-about-stat-item strong {
  display: block;
  color: var(--theme-color-dark);
  font-size: 27px;
  line-height: 1;
}

.dw-about-stat-item small {
  display: block;
  margin-top: 4px;
  color: rgba(var(--theme-color-dark-rgb), 0.7);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

/* ================================
   Animations
================================ */

@keyframes dwAboutRocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }
}

@keyframes dwAboutCloudGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes dwAboutTwinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.75) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.18) rotate(45deg);
  }
}

@keyframes dwAboutCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dwAboutPlanetFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

@keyframes dwAboutStoryRocket {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .dw-about-hero-grid {
    grid-template-columns: 1fr 0.85fr;
  }

  .dw-about-mission-card {
    grid-column: 1 / -1;
    max-width: 720px;
    margin: 0 auto;
  }

  .dw-about-difference-grid {
    grid-template-columns: 1fr;
  }

  .dw-about-difference-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dw-about-story-card {
    min-height: 280px;
  }
}

@media (max-width: 991px) {
  .dw-about-launch-section {
    padding: 85px 0 95px;
  }

  .dw-about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-about-feature-row {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-about-rocket-wrap {
    min-height: auto;
  }

  .dw-about-rocket-wrap img {
    max-width: 360px;
  }

  .dw-about-mission-card {
    text-align: left;
  }

  .dw-about-difference-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dw-about-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dw-about-stat-item:nth-child(2) {
    border-right: 0;
  }

  .dw-about-stat-item:nth-child(1),
  .dw-about-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(var(--theme-color-dark-rgb), 0.1);
  }
}

@media (max-width: 767px) {
  .dw-about-container {
    width: min(100% - 28px, 1320px);
  }

  .dw-about-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dw-about-difference-box {
    padding: 34px 20px 22px;
  }

  .dw-about-story-card {
    padding: 30px 24px 190px;
    text-align: left;
  }

  .dw-about-story-rocket {
    width: 170px;
    right: 12px;
  }

  .dw-about-story-card::before {
    right: 42px;
  }
}

@media (max-width: 575px) {
  .dw-about-launch-section {
    padding: 70px 0 80px;
  }


  .dw-about-feature-row {
    gap: 16px;
  }

  .dw-about-feature-item {
    text-align: center;
  }

  .dw-about-difference-cards {
    grid-template-columns: 1fr;
  }

  .dw-about-stats-row {
    grid-template-columns: 1fr;
  }

  .dw-about-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--theme-color-dark-rgb), 0.1);
  }

  .dw-about-stat-item:last-child {
    border-bottom: 0;
  }

  .dw-about-mission-card {
    padding: 24px 22px;
  }
}

.dw-about-difference-icon-image {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-about-difference-icon-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


/* ================================
   DelosWeb Online Home Section
================================ */

.dw-online-home-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 32%, rgba(var(--theme-color1-rgb), 0.18), transparent 360px),
    radial-gradient(circle at 80% 20%, rgba(14, 102, 255, 0.16), transparent 420px),
    linear-gradient(135deg, #02072a 0%, var(--theme-color-dark) 44%, var(--theme-color-deep-blue) 100%);
  isolation: isolate;
}

/* subtle grid / stars background */
.dw-online-home-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, var(--theme-color-black) 0%, transparent 78%);
  pointer-events: none;
}

/* dotted map style background */
.dw-online-home-bg-map {
  position: absolute;
  right: -70px;
  top: 40px;
  z-index: 0;
  width: 760px;
  height: 520px;
  opacity: 0.22;
  background:
    radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.9) 1.3px, transparent 1.8px);
  background-size: 17px 17px;
  border-radius: 50%;
  transform: rotate(-8deg);
  filter: blur(0.1px);
  pointer-events: none;
}

.dw-online-home-bg-map::before {
  content: "";
  position: absolute;
  inset: 70px 40px 40px 60px;
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.34);
  transform: rotate(12deg);
}

.dw-online-home-bg-map::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 38%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme-color-yellow);
  box-shadow:
    0 0 22px rgba(var(--theme-color1-rgb), 0.9),
    210px -80px 0 rgba(var(--theme-color1-rgb), 0.65),
    310px 90px 0 rgba(var(--theme-color1-rgb), 0.55);
}

/* animated stars */
.dw-online-home-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.9) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 260px 260px;
  background-position: 30px 20px, 80px 50px, 130px 90px;
  animation: dwOnlineStarsMove 22s linear infinite;
}

.dw-online-home-container {
  position: relative;
  z-index: 3;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.dw-online-home-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

/* ================================
   Left Visual
================================ */

.dw-online-home-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.42);
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--theme-color1-rgb), 0.24), transparent 46%),
    linear-gradient(180deg, rgba(7, 18, 79, 0.34), rgba(var(--theme-color-dark-rgb), 0.28));
  box-shadow:
    0 36px 90px rgba(var(--theme-color-dark-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* globe glow behind image */
.dw-online-home-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 660px;
  height: 660px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(var(--theme-color1-rgb), 0.12), transparent 32%),
    radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.18), transparent 68%);
  border: 1px solid rgba(var(--theme-color1-rgb), 0.12);
  pointer-events: none;
}

.dw-online-home-visual::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 95px;
  height: 38px;
  border-radius: 50%;
  background: rgba(14, 102, 255, 0.28);
  box-shadow:
    0 0 40px rgba(14, 102, 255, 0.4),
    0 0 90px rgba(var(--theme-color1-rgb), 0.32);
  filter: blur(4px);
  pointer-events: none;
}

/* orbit rings */
.dw-online-home-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 760px;
  height: 380px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: dwOnlineOrbitMove 12s linear infinite;
}

.dw-online-home-orbit-two {
  width: 620px;
  height: 300px;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) rotate(18deg);
  animation-duration: 16s;
  animation-direction: reverse;
}

.dw-online-home-image-card {
  position: relative;
  z-index: 3;
  width: min(720px, 88%);
  animation: dwOnlineImageFloat 6s ease-in-out infinite;
}

.dw-online-home-image-card img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 34px 42px rgba(var(--theme-color-dark-rgb), 0.42))
    drop-shadow(0 0 30px rgba(var(--theme-color1-rgb), 0.12));
}

/* Floating badges */
.dw-online-home-badge {
  position: absolute;
  z-index: 5;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.45);
  background:
    linear-gradient(180deg, rgba(12, 36, 96, 0.86), rgba(var(--theme-color-dark-rgb), 0.86));
  box-shadow:
    0 22px 42px rgba(var(--theme-color-dark-rgb), 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.dw-online-home-badge span {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #0e66ff 0%, var(--theme-color-yellow) 100%);
  box-shadow: 0 0 24px rgba(var(--theme-color1-rgb), 0.32);
  font-size: 24px;
}

.dw-online-home-badge strong {
  display: block;
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dw-online-home-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.dw-online-home-badge-one {
  left: 6px;
  top: 170px;
  animation: dwOnlineBadgeFloat 5.8s ease-in-out infinite;
}

.dw-online-home-badge-two {
  right: 42px;
  top: 310px;
  animation: dwOnlineBadgeFloat 6.5s ease-in-out infinite reverse;
}

.dw-online-home-badge-three {
  left: 8px;
  bottom: 92px;
  animation: dwOnlineBadgeFloat 7s ease-in-out infinite;
}

/* ================================
   Right Content
================================ */

.dw-online-home-content {
  position: relative;
  z-index: 4;
  max-width: 680px;
}

.dw-online-home-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  color: #73c8ff;
  border-radius: 8px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.36);
  background: rgba(var(--theme-color1-rgb), 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dw-online-home-eyebrow i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--theme-color-yellow);
  box-shadow: 0 0 14px rgba(var(--theme-color1-rgb), 0.85);
}

.dw-online-home-content h2 {
  color: var(--theme-color-white);
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

.dw-online-home-content h2 span {
    color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-online-home-content > p {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

.dw-online-home-content > p strong {
  color: var(--theme-color-white);
}

/* Feature points */
.dw-online-home-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.dw-online-home-point {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.42);
  background:
    linear-gradient(180deg, rgba(13, 38, 96, 0.72), rgba(var(--theme-color-dark-rgb), 0.48));
  box-shadow:
    0 18px 34px rgba(var(--theme-color-dark-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.dw-online-home-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--theme-color1-rgb), 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.dw-online-home-point:hover {
  transform: translateX(8px);
  border-color: rgba(115, 200, 255, 0.7);
  box-shadow:
    0 24px 46px rgba(var(--theme-color-dark-rgb), 0.26),
    0 0 28px rgba(var(--theme-color1-rgb), 0.15);
}

.dw-online-home-point:hover::before {
  opacity: 1;
}

.dw-online-home-point span {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 14%),
    linear-gradient(135deg, #4285b5 0%, #123583 100%);
  box-shadow: 0 0 28px rgba(var(--theme-color1-rgb), 0.22);
  font-size: 28px;
}

.dw-online-home-point div {
  position: relative;
  z-index: 2;
}

.dw-online-home-point h3 {
  color: var(--theme-color-white);
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.dw-online-home-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

.dw-online-home-point-arrow {
  position: relative;
  z-index: 2;
  color: var(--theme-color-yellow);
  font-size: 20px;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.dw-online-home-point:hover .dw-online-home-point-arrow {
  transform: translateX(5px);
  color: #73c8ff;
}

/* CTA */
.dw-online-home-btn {
  min-height: 64px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  padding: 0 34px;
  color: var(--theme-color-white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--theme-color-yellow) 0%, #0e66ff 100%);
  box-shadow:
    0 20px 42px rgba(14, 102, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.dw-online-home-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 26px 52px rgba(14, 102, 255, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* ================================
   Animations
================================ */

@keyframes dwOnlineStarsMove {
  from {
    background-position: 30px 20px, 80px 50px, 130px 90px;
  }

  to {
    background-position: 150px 140px, 260px 230px, 390px 350px;
  }
}

@keyframes dwOnlineImageFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.2deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.4deg);
  }
}

@keyframes dwOnlineBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes dwOnlineOrbitMove {
  0% {
    transform: translate(-50%, -50%) rotate(-18deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 1399px) {
  .dw-online-home-grid {
    gap: 54px;
  }

  .dw-online-home-visual {
    min-height: 610px;
  }

  .dw-online-home-badge {
    min-width: 230px;
  }

}

@media (max-width: 1199px) {
  .dw-online-home-grid {
    grid-template-columns: 1fr;
  }

  .dw-online-home-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .dw-online-home-eyebrow,
  .dw-online-home-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-online-home-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-online-home-point {
    text-align: left;
  }

  .dw-online-home-visual {
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .dw-online-home-section {
    padding: 90px 0;
  }

  .dw-online-home-container {
    width: min(100% - 34px, 1500px);
  }

  .dw-online-home-visual {
    min-height: 560px;
  }

  .dw-online-home-image-card {
    width: min(650px, 86%);
  }

  .dw-online-home-badge-one {
    left: 24px;
    top: 115px;
  }

  .dw-online-home-badge-two {
    right: 8px;
    top: 270px;
  }

  .dw-online-home-badge-three {
    left: 34px;
    bottom: 68px;
  }
}

@media (max-width: 767px) {
  .dw-online-home-visual {
    min-height: auto;
    padding: 55px 20px 165px;
  }

  .dw-online-home-image-card {
    max-width: 470px;
    width: 100%;
  }

  .dw-online-home-badge {
    min-width: auto;
    max-width: none;
    width: calc(50% - 16px);
    padding: 13px;
  }

  .dw-online-home-badge span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 19px;
  }

  .dw-online-home-badge strong {
    font-size: 13px;
  }

  .dw-online-home-badge small {
    font-size: 11px;
  }

  .dw-online-home-badge-one {
    left: 16px;
    top: auto;
    bottom: 92px;
  }

  .dw-online-home-badge-two {
    right: 16px;
    top: auto;
    bottom: 92px;
  }

  .dw-online-home-badge-three {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }

  .dw-online-home-badge-three {
    animation: none;
  }

  .dw-online-home-point {
    grid-template-columns: auto 1fr;
  }

  .dw-online-home-point-arrow {
    display: none;
  }
}

@media (max-width: 575px) {
  .dw-online-home-section {
    padding: 75px 0;
  }

  .dw-online-home-visual {
    border-radius: 20px;
    padding: 38px 14px 210px;
  }

  .dw-online-home-badge {
    width: calc(100% - 28px);
    left: 14px !important;
    right: auto !important;
  }

  .dw-online-home-badge-one {
    bottom: 155px;
  }

  .dw-online-home-badge-two {
    bottom: 87px;
  }

  .dw-online-home-badge-three {
    bottom: 22px;
    transform: none;
  }

  .dw-online-home-point {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-online-home-point span {
    margin: 0 auto;
  }

  .dw-online-home-btn {
    width: 100%;
  }
}
/* ================================
   DelosWeb Scope Section
   What We Do / Do Not Do
================================ */

.dw-scope-section {
  position: relative;
  padding: 110px 48px 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--theme-color1-rgb), 0.12), transparent 360px),
    linear-gradient(180deg, var(--theme-color-white) 0%, #f5faff 100%);
  isolation: isolate;
}

/* Background Image */
.dw-scope-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dw-scope-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

/* Stars */
.dw-scope-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(14, 102, 255, 0.32) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(var(--theme-color1-rgb), 0.24) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(var(--theme-color-dark-rgb), 0.12) 1px, transparent 1.5px);
  background-size: 120px 120px, 180px 180px, 260px 260px;
  background-position: 20px 30px, 80px 10px, 140px 80px;
  animation: dwScopeStarsMove 20s linear infinite;
}


/* Rocket */
.dw-scope-rocket {
    position: absolute;
    top: 208px;
    right: 10%;
    z-index: 6;
    width: min(265px, 13vw);
    pointer-events: none;
    animation: dwScopeRocketLaunch 5.8s ease-in-out infinite;
}

.dw-scope-rocket img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 18px 22px rgba(var(--theme-color-dark-rgb), 0.14))
    drop-shadow(0 0 22px rgba(var(--theme-color1-rgb), 0.18));
}

/* Container */
.dw-scope-container {
  position: relative;
  z-index: 5;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.dw-scope-header {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.dw-scope-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--theme-color1);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dw-scope-eyebrow i {
  color: var(--theme-color1);
  font-style: normal;
}

.dw-scope-header h2 {
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.dw-scope-header h2 span {
  color: var(--theme-color1);
}

.dw-scope-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--theme-color1);
}

.dw-scope-title-divider span {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 102, 255, 0.55), transparent);
}

.dw-scope-title-divider i {
  font-size: 18px;
  transform: rotate(-18deg);
  animation: dwScopeMiniRocket 2.8s ease-in-out infinite;
}

/* Dual Cards */
.dw-scope-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.dw-scope-panel {
  position: relative;
  min-height: 560px;
  padding: 42px 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(var(--theme-color1-rgb), 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.94));
  box-shadow:
    0 24px 70px rgba(var(--theme-color-dark-rgb), 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.dw-scope-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--theme-color1-rgb), 0.38);
  box-shadow:
    0 32px 85px rgba(var(--theme-color-dark-rgb), 0.1),
    0 0 36px rgba(var(--theme-color1-rgb), 0.11);
}

.dw-scope-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 12%, rgba(14, 102, 255, 0.07), transparent 220px);
  pointer-events: none;
}

.dw-scope-panel-dont::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(var(--theme-color1-rgb), 0.055), transparent 220px);
}

.dw-scope-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.dw-scope-panel-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, var(--theme-color-yellow) 0%, var(--theme-color-yellow) 100%);
  box-shadow:
    0 12px 28px rgba(14, 102, 255, 0.22),
    0 0 0 10px rgba(14, 102, 255, 0.08);
  font-size: 28px;
}

.dw-scope-panel-icon-soft {
  color: #6c7d99;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.4), transparent 34%),
    linear-gradient(135deg, #e4ebf5 0%, #cbd8ea 100%);
  box-shadow:
    0 12px 28px rgba(var(--theme-color-dark-rgb), 0.08),
    0 0 0 10px rgba(151, 170, 199, 0.12);
}

.dw-scope-panel h3 {
  color: var(--theme-color-dark);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
}

/* Lists */
.dw-scope-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dw-scope-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(var(--theme-color-dark-rgb), 0.86);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 650;
  margin-bottom: 16px;
}

.dw-scope-list li:last-child {
  margin-bottom: 0;
}

.dw-scope-list li::before {
  content: "";
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--theme-color1);
  box-shadow: 0 8px 18px rgba(14, 102, 255, 0.18);
}

.dw-scope-list li::after {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--theme-color-white);
  font-size: 14px;
  line-height: 1;
}

.dw-scope-list-dont li::before {
  background: #dce5f1;
  box-shadow: 0 8px 18px rgba(var(--theme-color-dark-rgb), 0.06);
}

.dw-scope-list-dont li::after {
  content: "×";
  left: 8px;
  top: -1px;
  color: #8b9bb6;
  font-size: 18px;
}

/* Bottom Note */
.dw-scope-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(14, 102, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.92));
  box-shadow:
    0 24px 70px rgba(var(--theme-color-dark-rgb), 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dw-scope-note-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
  box-shadow:
    0 16px 34px rgba(14, 102, 255, 0.2),
    0 0 0 10px rgba(14, 102, 255, 0.08);
  font-size: 30px;
}

.dw-scope-note-text {
  position: relative;
  padding-left: 0;
}

.dw-scope-note-text strong {
  display: block;
  color: var(--theme-color-dark);
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.dw-scope-note-text strong span {
  color: var(--theme-color1);
}

.dw-scope-note-text p {
  margin: 6px 0 0;
  color: rgba(var(--theme-color-dark-rgb), 0.72);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 600;
}

.dw-scope-note-btn {
  box-sizing: border-box;
  min-height: 58px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 28px;
  color: var(--theme-color-white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color1) 100%);
  box-shadow:
    0 18px 38px rgba(14, 102, 255, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.dw-scope-note-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow:
    0 24px 48px #0e66ff52,
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* ================================
   Animations
================================ */

@keyframes dwScopeRocketLaunch {
  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-14px) rotate(9deg);
  }
}

@keyframes dwScopeStarsMove {
  from {
    background-position: 20px 30px, 80px 10px, 140px 80px;
  }

  to {
    background-position: 140px 150px, 260px 190px, 400px 300px;
  }
}

@keyframes dwScopeOrbitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.65;
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
    opacity: 1;
  }
}

@keyframes dwScopeMiniRocket {
  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
  }

  50% {
    transform: translateY(-4px) rotate(-10deg);
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 1199px) {
  .dw-scope-rocket {
    right: 7%;
    width: 140px;
  }

  .dw-scope-dual {
    gap: 24px;
  }

  .dw-scope-panel {
    padding: 36px 34px;
  }

}

@media (max-width: 991px) {
  .dw-scope-section {
    padding: 90px 0;
  }

  .dw-scope-rocket {
    position: relative;
    top: auto;
    right: auto;
    width: 130px;
    margin: -10px auto 30px;
  }

  .dw-scope-dual {
    grid-template-columns: 1fr;
  }

  .dw-scope-panel {
    min-height: auto;
  }

  .dw-scope-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-scope-note-icon {
    margin: 0 auto;
  }

  .dw-scope-note-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dw-scope-container {
    width: min(100% - 28px, 1220px);
  }

  .dw-scope-panel {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .dw-scope-panel-head {
    gap: 16px;
  }

  .dw-scope-panel-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    font-size: 22px;
  }

  .dw-scope-panel h3 {
    font-size: 27px;
  }

}

@media (max-width: 575px) {
  .dw-scope-section {
    padding: 75px 0;
  }

  .dw-scope-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .dw-scope-title-divider span {
    width: 46px;
  }

  .dw-scope-panel-head {
    flex-direction: column;
    text-align: center;
  }

  .dw-scope-list li {
    gap: 12px;
    align-items: flex-start;
  }

  .dw-scope-note-text strong {
    font-size: 24px;
  }

}

/* ==========================================
   Ownership Section - New Blue Design
========================================== */

.dw-ownership-section {
  position: relative;
  overflow: hidden;
  padding: 110px 48px 95px;
  background: #03144c;
  isolation: isolate;
}

.dw-ownership-container-wide {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.dw-ownership-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dw-ownership-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dw-ownership-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 35%, rgba(var(--theme-color1-rgb), 0.22), transparent 30%),
    radial-gradient(circle at 82% 32%, rgba(var(--theme-color1-rgb), 0.18), transparent 24%),
    linear-gradient(90deg, rgba(3, 20, 76, 0.92) 0%, rgba(5, 22, 88, 0.86) 52%, rgba(3, 20, 76, 0.92) 100%);
}

/* Decorative stars */
.dw-ownership-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.dw-ownership-stars .star {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(120, 180, 255, 0.85);
  animation: dwOwnershipTwinkle 4s ease-in-out infinite;
}

.dw-ownership-stars .star-1 {
  width: 5px;
  height: 5px;
  top: 14%;
  left: 10%;
  animation-delay: 0s;
}

.dw-ownership-stars .star-2 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 82%;
  animation-delay: 1s;
}

.dw-ownership-stars .star-3 {
  width: 4px;
  height: 4px;
  top: 48%;
  left: 92%;
  animation-delay: 1.8s;
}

.dw-ownership-stars .star-4 {
  width: 7px;
  height: 7px;
  top: 72%;
  left: 12%;
  animation-delay: 0.8s;
}

.dw-ownership-stars .star-5 {
  width: 5px;
  height: 5px;
  top: 82%;
  left: 73%;
  animation-delay: 2.3s;
}

.dw-ownership-stars .star-6 {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 58%;
  animation-delay: 1.4s;
}

.dw-ownership-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

/* =========================
   Content
========================= */

.dw-ownership-content {
  position: relative;
  z-index: 4;
  max-width: 640px;
}

.dw-ownership-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bcdcff;
  border: 1px solid rgba(128, 182, 255, 0.28);
  background: rgba(31, 94, 191, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.dw-ownership-content h2 {
  margin: 0 0 28px;
  color: var(--theme-color-white);
  font-size: var(--h2-font-size);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 540px;
}

.dw-ownership-content p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  max-width: 620px;
}

.dw-ownership-content p:last-child {
  margin-bottom: 0;
}

/* =========================
   Visual Side
========================= */

.dw-ownership-visual {
  position: relative;
  min-height: 720px;
  z-index: 4;
}

.dw-ownership-visual-frame {
  position: absolute;
  inset: 35px 25px 25px 25px;
  border-radius: 38px;
  border: 1px solid rgba(114, 176, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(11, 34, 102, 0.26), rgba(5, 18, 67, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(255,255,255,0.02);
}

.dw-ownership-glow {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  width: 420px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(63, 141, 255, 0.52) 0%, rgba(63, 141, 255, 0.18) 45%, transparent 72%);
  filter: blur(8px);
  animation: dwOwnershipPulse 4.8s ease-in-out infinite;
}

.dw-ownership-smoke {
  top: 599px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(960px, 160%);
  z-index: 2;
  animation: dwOwnershipSmokeFloat 6s ease-in-out infinite;
}

.dw-ownership-smoke img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.98;
}

.dw-ownership-rocket {
  position: absolute;
  right: 7px;
  top: 72px;
  width: min(550px, 110%);
  z-index: 0;
  transform-origin: center bottom;
  animation: dwOwnershipRocketFloat 5.6s ease-in-out infinite;
}

.dw-ownership-rocket img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 26px 36px rgba(0, 10, 45, 0.42))
    drop-shadow(0 0 20px rgba(77, 158, 255, 0.30));
}

/* =========================
   Floating Cards
========================= */

.dw-ownership-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 260px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(117, 177, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(12, 36, 108, 0.88), rgba(8, 25, 76, 0.85));
  box-shadow:
    0 16px 34px rgba(0, 8, 35, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.dw-card-top {
  left: -85px;
  top: 160px;
  z-index: 4;
  animation: dwOwnershipCardFloat 6s ease-in-out infinite;
}

.dw-card-bottom {
  left: -85px;
  bottom: 70px;
  /* z-index: ; */
  animation: dwOwnershipCardFloat 6s ease-in-out infinite 1.2s;
}

.dw-ownership-card-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(51, 129, 255, 0.28), rgba(27, 94, 215, 0.16));
  border: 1px solid rgba(134, 188, 255, 0.25);
  color: var(--theme-color-white);
  box-shadow: 0 0 20px rgba(64, 142, 255, 0.18);
}

.dw-ownership-card-icon i {
  font-size: 24px;
}

.dw-ownership-card strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--theme-color-white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.dw-ownership-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================
   Animations
========================= */

@keyframes dwOwnershipRocketFloat {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-18px) rotate(-2deg);
  }
}

@keyframes dwOwnershipSmokeFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

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

@keyframes dwOwnershipPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.88;
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes dwOwnershipTwinkle {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

/* =========================
   Responsive
========================= */



    .dw-ownership-smoke {
        top: 644px;
        position: absolute !important;
        left: 50% !important;
        bottom: -20px !important;
        width: 930px !important;
        max-width: 120% !important;
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        z-index: 6 !important;
    }

@media (max-width: 1199px) {


  .dw-ownership-grid {
    gap: 48px;
  }

  .dw-ownership-visual {
    min-height: 640px;
  }

  .dw-ownership-rocket {
    right: 60px;
    top: 110px;
    width: 260px;
  }

  .dw-ownership-card {
    width: 230px;
  }

}

@media (max-width: 991px) {
  .dw-ownership-section {
    padding: 95px 0;
  }

  .dw-ownership-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dw-ownership-content {
    max-width: 100%;
  }

  .dw-ownership-content h2 {
    max-width: 100%;
  }

  .dw-ownership-visual {
    min-height: 620px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .dw-ownership-rocket {
    right: 70px;
    top: 90px;
  }

  .dw-card-top {
    left: 15px;
    top: 145px;
  }

  .dw-card-bottom {
    left: 30px;
    bottom: 55px;
  }
}

@media (max-width: 767px) {
  .dw-ownership-section {
    padding: 80px 0;
  }

  .dw-ownership-visual {
    min-height: 560px;
  }

  .dw-ownership-visual-frame {
    inset: 25px 10px 20px;
    border-radius: 26px;
  }

  .dw-ownership-rocket {
    right: 25px;
    top: 85px;
    width: 220px;
  }

  .dw-ownership-smoke {
    width: 430px;
  }

  .dw-ownership-card {
    width: 200px;
    padding: 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .dw-ownership-card-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .dw-ownership-card-icon i {
    font-size: 20px;
  }

  .dw-ownership-card strong {
    font-size: 16px;
  }

  .dw-ownership-card small {
    font-size: 13px;
  }

  .dw-card-top {
    left: 0;
    top: 140px;
  }

  .dw-card-bottom {
    left: 8px;
    bottom: 38px;
  }
}

@media (max-width: 575px) {
  .dw-ownership-container-wide {
    width: min(100% - 24px, 1320px);
  }

  .dw-ownership-section {
    padding: 70px 0;
  }

  .dw-ownership-eyebrow {
    font-size: 11px;
    padding: 7px 12px;
  }

  .dw-ownership-content h2 {
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .dw-ownership-content p {

    margin-bottom: 16px;
  }

  .dw-ownership-visual {
    min-height: 500px;
  }

  .dw-ownership-rocket {
    width: 180px;
    right: 8px;
    top: 85px;
  }

  .dw-ownership-smoke {
    width: 340px;
  }

  .dw-ownership-glow {
    width: 250px;
    height: 100px;
    bottom: 62px;
  }

  .dw-ownership-card {
    width: 165px;
    padding: 12px;
  }

  .dw-card-top {
    top: 155px;
  }

  .dw-card-bottom {
    bottom: 28px;
  }

  .dw-ownership-card strong {
    font-size: 14px;
  }

  .dw-ownership-card small {
    font-size: 12px;
    line-height: 1.45;
  }
}

/* Extra decorative background image */
.dw-ownership-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dw-ownership-bg-decor img {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(760px, 52vw);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.28;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.05);
}

/* =========================================
   DelosWeb Launch Options Section
   Colors: var(--theme-color-dark) + var(--theme-color-yellow)
========================================= */

.dw-launch-options-section {
  position: relative;
  padding: 105px 0 115px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--theme-color-yellow-rgb), 0.12), transparent 340px),
    radial-gradient(circle at 15% 20%, rgba(var(--theme-color-yellow-rgb), 0.07), transparent 280px),
    radial-gradient(circle at 85% 18%, rgba(var(--theme-color-yellow-rgb), 0.08), transparent 300px),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
  isolation: isolate;
}

.dw-launch-options-container {
  position: relative;
  z-index: 5;
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
}

/* =========================
   Background Details
========================= */

.dw-launch-options-bg-orbit {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  border: 1px dashed rgba(var(--theme-color-yellow-rgb), 0.18);
}

.dw-orbit-left {
  width: 420px;
  height: 420px;
  left: -130px;
  top: 130px;
  transform: rotate(-18deg);
  animation: dwLaunchOrbitFloat 9s ease-in-out infinite;
}

.dw-orbit-right {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 80px;
  transform: rotate(18deg);
  animation: dwLaunchOrbitFloat 10s ease-in-out infinite reverse;
}

.dw-launch-options-bg-planet {
  position: absolute;
  right: 7%;
  top: 55px;
  z-index: 1;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), rgba(var(--theme-color-yellow-rgb), 0.16) 58%, rgba(var(--theme-color-yellow-rgb), 0.06) 100%);
  opacity: 0.55;
  pointer-events: none;
}

.dw-launch-options-bg-planet::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 48%;
  width: 220px;
  height: 46px;
  border: 5px solid rgba(var(--theme-color-yellow-rgb), 0.12);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-12deg);
}

.dw-launch-options-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(var(--theme-color-yellow-rgb), 0.45) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(var(--theme-color-dark-rgb), 0.14) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(var(--theme-color-yellow-rgb), 0.28) 1px, transparent 1.5px);
  background-size: 110px 110px, 170px 170px, 250px 250px;
  background-position: 20px 30px, 80px 20px, 160px 100px;
  animation: dwLaunchStarsMove 24s linear infinite;
}

.dw-launch-options-clouds {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 1;
  height: 190px;
  pointer-events: none;
  opacity: 0.75;
  background:
    radial-gradient(circle at 2% 70%, rgba(var(--theme-color-yellow-rgb), 0.10) 0 70px, transparent 72px),
    radial-gradient(circle at 12% 78%, rgba(var(--theme-color-yellow-rgb), 0.08) 0 92px, transparent 94px),
    radial-gradient(circle at 90% 78%, rgba(var(--theme-color-yellow-rgb), 0.08) 0 90px, transparent 92px),
    radial-gradient(circle at 100% 68%, rgba(var(--theme-color-yellow-rgb), 0.10) 0 78px, transparent 80px);
}

/* =========================
   Heading
========================= */

.dw-launch-options-heading {
  max-width: 1050px;
  margin: 0 auto 64px;
  text-align: center;
}

.dw-launch-options-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--theme-color-yellow);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dw-launch-options-eyebrow i {
  width: 54px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--theme-color-yellow), transparent);
}

.dw-launch-options-heading h2 {
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.dw-launch-options-heading h2 span {
  color: var(--theme-color-yellow);
}

.dw-launch-options-lead {
  max-width: 790px;
  margin: 0 auto;
  color: rgba(var(--theme-color-dark-rgb), 0.68);
  font-size: var(--body-font-size-lead);
  line-height: var(--body-line-height-lead);
  font-weight: 600;
}

/* =========================
   Main Grid
========================= */

.dw-launch-options-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

/* =========================
   Cards
========================= */

.dw-launch-option-card {
  position: relative;
  min-height: 510px;
  padding: 48px 48px 42px;
  border-radius: 30px;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.16);
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--theme-color-yellow-rgb), 0.055), transparent 210px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 254, 255, 0.96));
  box-shadow:
    0 28px 85px rgba(var(--theme-color-dark-rgb), 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.dw-launch-option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--theme-color-yellow-rgb), 0.34);
  box-shadow:
    0 38px 95px rgba(var(--theme-color-dark-rgb), 0.105),
    0 0 34px rgba(var(--theme-color-yellow-rgb), 0.08);
}

.dw-launch-card-custom {
  margin-top: 20px;
}

.dw-launch-card-ready {
  margin-top: 20px;
}

.dw-launch-card-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--theme-color-yellow);
  font-size: 34px;
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.14);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, rgba(var(--theme-color-yellow-rgb), 0.10), rgba(var(--theme-color-yellow-rgb), 0.045));
  box-shadow:
    0 16px 34px rgba(var(--theme-color-dark-rgb), 0.07),
    0 0 0 12px rgba(var(--theme-color-yellow-rgb), 0.04);
}

.dw-launch-option-card h3 {
  margin: 0;
  color: var(--theme-color-dark);
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.dw-launch-card-line {
  width: 56px;
  height: 3px;
  display: block;
  margin: 18px 0 28px;
  border-radius: 999px;
  background: var(--theme-color-yellow);
}

.dw-launch-option-card 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);
  font-weight: 600;
}

/* =========================
   Custom Features
========================= */

.dw-launch-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(var(--theme-color-yellow-rgb), 0.12);
}

.dw-launch-feature-item {
  text-align: center;
}

.dw-launch-feature-item span {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-yellow);
  font-size: 30px;
  margin-bottom: 12px;
}

.dw-launch-feature-item strong {
  display: block;
  color: var(--theme-color-dark);
  font-size: 13px;
  line-height: 1.32;
}

/* =========================
   Ready-to-Go List
========================= */

.dw-launch-check-list {
  list-style: none;
  margin: 26px 0 26px;
  padding: 0;
}

.dw-launch-check-list li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 12px;
  color: rgba(var(--theme-color-dark-rgb), 0.76);
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
  font-weight: 700;
}

.dw-launch-check-list li:last-child {
  margin-bottom: 0;
}

.dw-launch-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-white);
  border-radius: 50%;
  background: var(--theme-color-yellow);
  font-size: 12px;
}

.dw-launch-ready-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(var(--theme-color-yellow-rgb), 0.12);
}

.dw-launch-ready-note span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-yellow);
  border-radius: 50%;
  background: rgba(var(--theme-color-yellow-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.12);
  font-size: 25px;
}

.dw-launch-ready-note p {
  margin: 0;
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

/* =========================
   Center Rocket
========================= */

.dw-launch-options-rocket-stage {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-launch-options-rocket-stage img {
  position: relative;
  z-index: 3;
  width: min(330px, 100%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 26px 36px rgba(var(--theme-color-dark-rgb), 0.16))
    drop-shadow(0 0 30px rgba(var(--theme-color-yellow-rgb), 0.18));
  animation: dwLaunchRocketFloat 5.6s ease-in-out infinite;
}

.dw-launch-rocket-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--theme-color-yellow-rgb), 0.22);
  transform: translate(-50%, -50%);
  animation: dwLaunchCenterOrbit 14s linear infinite;
}

.dw-launch-rocket-orbit::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 88px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color-yellow);
  box-shadow: 0 0 18px rgba(var(--theme-color-yellow-rgb), 0.65);
}

.dw-launch-rocket-glow {
  position: absolute;
  left: -11%;
  bottom: 65px;
  z-index: 1;
  width: 430px;
  height: 94px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(var(--theme-color-yellow-rgb), 0.16) 0%, rgba(var(--theme-color-yellow-rgb), 0.08) 44%, transparent 72%);
  filter: blur(4px);
  animation: dwLaunchGlowPulse 4.8s ease-in-out infinite;
}

.dw-launch-rocket-glow::before,
.dw-launch-rocket-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.16);
}

.dw-launch-rocket-glow::before {
  width: 330px;
  height: 42px;
}

.dw-launch-rocket-glow::after {
  width: 450px;
  height: 66px;
  opacity: 0.55;
}

/* =========================
   Animations
========================= */

@keyframes dwLaunchRocketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes dwLaunchCenterOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes dwLaunchGlowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.78;
  }

  50% {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes dwLaunchStarsMove {
  from {
    background-position: 20px 30px, 80px 20px, 160px 100px;
  }

  to {
    background-position: 140px 150px, 250px 210px, 380px 310px;
  }
}

@keyframes dwLaunchOrbitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-14px) rotate(-10deg);
    opacity: 1;
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1399px) {
  .dw-launch-options-grid {
    grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
    gap: 28px;
  }

  .dw-launch-option-card {
    padding: 40px 36px;
  }

  .dw-launch-options-rocket-stage img {
    width: 485px;
  }
}

@media (max-width: 1199px) {
  .dw-launch-options-section {
    padding: 95px 0;
  }

  .dw-launch-options-grid {
    grid-template-columns: 1fr;
    max-width: 960px;
    margin: 0 auto;
  }

  .dw-launch-options-rocket-stage {
    order: -1;
    min-height: 360px;
  }

  .dw-launch-options-rocket-stage img {
    width: 650px;
  }

  .dw-launch-rocket-orbit {
    width: 330px;
    height: 330px;
  }

  .dw-launch-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .dw-launch-card-custom,
  .dw-launch-card-ready {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dw-launch-options-rocket-stage img {
    width: 300px;
  }
}

@media (max-width: 767px) {
  .dw-launch-options-container {
    width: min(100% - 28px, 1500px);
  }

  .dw-launch-option-card {
    min-height: auto;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .dw-launch-option-card h3 {
    font-size: 29px;
  }

  .dw-launch-options-rocket-stage {
    min-height: 310px;
  }

  .dw-launch-options-rocket-stage img {
    width: 220px;
  }

  .dw-launch-rocket-orbit {
    width: 290px;
    height: 290px;
  }
}

@media (max-width: 575px) {
  .dw-launch-options-section {
    padding: 78px 0;
  }

  .dw-launch-options-eyebrow {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .dw-launch-options-eyebrow i {
    width: 28px;
  }

  .dw-launch-feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .dw-launch-feature-item strong {
    font-size: 12px;
  }

  .dw-launch-ready-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-launch-ready-note span {
    margin: 0 auto;
  }
}

/* Who We Are CTA color system: shared with the homepage. */
body.dw-who-we-are-page :is(
  .ks-btn-black,
  .dw-about-story-btn,
  .dw-online-home-btn,
  .dw-scope-note-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-who-we-are-page :is(
  .ks-btn-black,
  .dw-about-story-btn,
  .dw-online-home-btn,
  .dw-scope-note-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;
}

/* Who-We-Are-only shared FAQ typography migration. */
body.dw-who-we-are-page .dw-diy-faq__intro-note p {
  font-size: var(--body-font-size-small);
  line-height: var(--body-line-height-small);
}

body.dw-who-we-are-page .dw-custom-faq-before-footer .dw-faq-answer p {
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
}

@media (max-width: 575px) {
  body.dw-who-we-are-page .dw-scope-note-btn {
    width: auto;
    min-width: 0;
    max-width: none;
    justify-self: stretch;
    margin-inline: 0;
    padding-inline: 16px;
  }
}


/* =========================================================
   OWNERSHIP SECTION
   RESPONSIVE SYSTEM
   1400px AND BELOW
========================================================= */

@media (max-width: 1400px) {

    .dw-ownership-section {
        position: relative !important;

        padding-top: 90px !important;
        padding-bottom: 90px !important;

        overflow: hidden !important;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .dw-ownership-container-wide {
        width: calc(100% - 80px) !important;
        max-width: 1280px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       MAIN GRID
    ===================================================== */

    .dw-ownership-grid {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(420px, 0.92fr) !important;

        align-items: center !important;

        gap: 44px !important;

        width: 100% !important;
        max-width: 100% !important;
    }


    /* =====================================================
       LEFT CONTENT
    ===================================================== */

    .dw-ownership-content {
        width: 100% !important;
        max-width: 650px !important;

        min-width: 0 !important;
    }


    .dw-ownership-content h2 {
        max-width: 560px !important;

        font-size: clamp(42px, 4vw, 58px) !important;
        line-height: 1.02 !important;
    }


    .dw-ownership-content p {
        max-width: 640px !important;

        line-height: 1.65 !important;
    }


    /* =====================================================
       RIGHT VISUAL
    ===================================================== */

    .dw-ownership-visual {
        position: relative !important;

        width: 100% !important;
        max-width: 540px !important;

        min-height: 560px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        overflow: visible !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       ROCKET
    ===================================================== */

    .dw-ownership-rocket {
        position: absolute !important;

        left: 50% !important;
        right: auto !important;

        bottom: 0 !important;
        top: auto !important;

        width: 360px !important;
        max-width: 70% !important;

        transform: translateX(-50%) !important;

        z-index: 4 !important;
    }


    .dw-ownership-rocket img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        object-fit: contain !important;
    }

    /* =====================================================
       SMOKE
    ===================================================== */

    .dw-ownership-smoke {
        top: 435px;
        position: absolute !important;

        left: 50% !important;
        bottom: -20px !important;

        width: 930px !important;
        max-width: 120% !important;

        transform: translateX(-50%) !important;

        opacity: 1 !important;

        z-index: 6 !important;
    }


    .dw-ownership-smoke img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }


    /* =====================================================
       TOP FLOATING CARD
    ===================================================== */

    .dw-ownership-card.dw-card-top {
        position: absolute !important;

        top: 48px !important;
        left: -30px !important;

        right: auto !important;
        bottom: auto !important;

        width: 240px !important;
        max-width: 240px !important;

        z-index: 7 !important;
    }


    /* =====================================================
       BOTTOM FLOATING CARD
    ===================================================== */

    .dw-ownership-card.dw-card-bottom {
        position: absolute !important;

        left: -30px !important;
        bottom: 38px !important;

        right: auto !important;
        top: auto !important;

        width: 240px !important;
        max-width: 240px !important;

        z-index: 7 !important;
    }


    .dw-ownership-card {
        box-sizing: border-box !important;
    }

}


/* =========================================================
   1199px AND BELOW
========================================================= */

@media (max-width: 1199px) {

    .dw-ownership-section {
        padding-top: 82px !important;
        padding-bottom: 82px !important;
    }


    .dw-ownership-container-wide {
        width: calc(100% - 64px) !important;
        max-width: 1100px !important;
    }


    .dw-ownership-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.88fr) !important;

        gap: 34px !important;
    }


    .dw-ownership-content {
        max-width: 580px !important;
    }


    .dw-ownership-content h2 {
        max-width: 520px !important;

        font-size: clamp(40px, 4vw, 52px) !important;
    }


    /* Visual */
    .dw-ownership-visual {
        max-width: 470px !important;

        min-height: 500px !important;
    }


    /* Rocket */
    .dw-ownership-rocket {
        width: 300px !important;
        max-width: 68% !important;
    }


    /* Smoke */
    .dw-ownership-smoke {
        width: 370px !important;
    }


    /* Cards */
    .dw-ownership-card.dw-card-top {
        top: 42px !important;
        left: -18px !important;

        width: 215px !important;
        max-width: 215px !important;
    }


    .dw-ownership-card.dw-card-bottom {
        left: -18px !important;
        bottom: 32px !important;

        width: 215px !important;
        max-width: 215px !important;
    }

}


/* =========================================================
   991px AND BELOW
   STACK TEXT + VISUAL
========================================================= */

@media (max-width: 991px) {

    .dw-ownership-section {
        padding-top: 76px !important;
        padding-bottom: 78px !important;
    }


    .dw-ownership-container-wide {
        width: calc(100% - 52px) !important;
        max-width: 820px !important;
    }


    .dw-ownership-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 42px !important;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .dw-ownership-content {
        width: 100% !important;
        max-width: 720px !important;

        margin: 0 auto !important;

        text-align: center !important;
    }


    .dw-ownership-eyebrow {
        display: inline-flex !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .dw-ownership-content h2 {
        width: 100% !important;
        max-width: 650px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }


    .dw-ownership-content p {
        width: 100% !important;
        max-width: 680px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }


    /* =====================================================
       VISUAL
    ===================================================== */

    .dw-ownership-visual {
        width: 100% !important;
        max-width: 620px !important;

        min-height: 510px !important;

        margin: 0 auto !important;
    }


    /* Rocket centered */
    .dw-ownership-rocket {
        left: 50% !important;

        width: 285px !important;
        max-width: 52% !important;

        transform: translateX(-50%) !important;
    }


    .dw-ownership-smoke {
        width: 360px !important;
        max-width: 72% !important;
    }


    /* Top card */
    .dw-ownership-card.dw-card-top {
        top: 42px !important;
        left: 24px !important;

        width: 220px !important;
        max-width: 38% !important;
    }


    /* Bottom card */
    .dw-ownership-card.dw-card-bottom {
        left: auto !important;
        right: 24px !important;

        bottom: 38px !important;

        width: 220px !important;
        max-width: 38% !important;
    }

}


/* =========================================================
   767px AND BELOW
   MOBILE RESTRUCTURE

   Text
   Rocket
   Card
   Card
========================================================= */

@media (max-width: 767px) {

    .dw-ownership-section {
        padding-top: 68px !important;
        padding-bottom: 70px !important;
    }


    .dw-ownership-container-wide {
        width: calc(100% - 40px) !important;
        max-width: 620px !important;
    }


    .dw-ownership-grid {
        gap: 34px !important;
    }


    /* =====================================================
       VISUAL BECOMES NORMAL FLOW
    ===================================================== */

    .dw-ownership-visual {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        width: 100% !important;
        max-width: 520px !important;

        min-height: 0 !important;
        height: auto !important;

        margin: 0 auto !important;

        padding-top: 20px !important;

        overflow: hidden !important;
    }


    /* =====================================================
       FRAME / GLOW
    ===================================================== */

    .dw-ownership-visual-frame {
        position: absolute !important;

        inset: 0 !important;

        pointer-events: none !important;

        z-index: 0 !important;
    }


    .dw-ownership-glow {
        position: absolute !important;

        top: 80px !important;
        left: 50% !important;

        width: 300px !important;
        height: 300px !important;

        transform: translateX(-50%) !important;

        pointer-events: none !important;

        z-index: 0 !important;
    }


    /* =====================================================
       ROCKET
       Normal flow instead of absolute
    ===================================================== */

    .dw-ownership-rocket {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 235px !important;
        max-width: 62vw !important;

        margin: 0 auto !important;

        transform: none !important;

        z-index: 4 !important;
    }


    /* =====================================================
       SMOKE
       Behind rocket only
    ===================================================== */

    .dw-ownership-smoke {
        position: absolute !important;

        top: 272px !important;
        left: 50% !important;
        bottom: auto !important;

        width: 300px !important;
        max-width: 78% !important;

        transform: translateX(-50%) !important;

        opacity: 1 !important;

        z-index: 5 !important;
    }


    /* =====================================================
       CARDS
       No more floating / overlap
    ===================================================== */

    .dw-ownership-card.dw-card-top,
    .dw-ownership-card.dw-card-bottom {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        width: 100% !important;
        max-width: 440px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        transform: none !important;

        z-index: 6 !important;
    }


    .dw-ownership-card.dw-card-top {
        margin-top: 24px !important;
    }


    .dw-ownership-card.dw-card-bottom {
        margin-top: 14px !important;
    }

}


/* =========================================================
   575px AND BELOW
========================================================= */

@media (max-width: 575px) {

    .dw-ownership-section {
        padding-top: 60px !important;
        padding-bottom: 62px !important;
    }


    .dw-ownership-container-wide {
        width: calc(100% - 32px) !important;
    }


    .dw-ownership-content h2 {
        font-size: clamp(34px, 9vw, 42px) !important;
    }


    .dw-ownership-content p {
        line-height: 1.65 !important;
    }


    /* Rocket */
    .dw-ownership-rocket {
        width: 205px !important;
        max-width: 66vw !important;
    }


    /* Smoke */
    .dw-ownership-smoke {
        top: 245px !important;

        width: 250px !important;

        opacity: 1 !important;
        z-index: 5 !important;
    }


    /* Cards */
    .dw-ownership-card.dw-card-top,
    .dw-ownership-card.dw-card-bottom {
        max-width: 400px !important;
    }

}


/* =========================================================
   420px AND BELOW
========================================================= */

@media (max-width: 420px) {

    .dw-ownership-container-wide {
        width: calc(100% - 28px) !important;
    }


    .dw-ownership-grid {
        gap: 28px !important;
    }


    .dw-ownership-rocket {
        width: 180px !important;
    }


    .dw-ownership-smoke {
        top: 215px !important;

        width: 220px !important;

    }


    

    .dw-ownership-card.dw-card-top,
    .dw-ownership-card.dw-card-bottom {
        width: 100% !important;

        padding-left: 16px !important;
        padding-right: 16px !important;

        box-sizing: border-box !important;
    }

}

@media (max-width: 267px) {

      .dw-ownership-smoke {
        top: 195px !important;

        width: 220px !important;

    }
}

/* =========================================================
   THE DELOSWEB DIFFERENCE
   COMPLETE RESPONSIVE RESTRUCTURE
   1545px AND BELOW
========================================================= */

@media (max-width: 1545px) {

    /* =====================================================
       MAIN WRAPPER
    ===================================================== */

    .dw-about-difference-box {
        width: calc(100% - 72px) !important;
        max-width: 1320px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .dw-about-difference-header {
        width: 100% !important;
        max-width: 780px !important;

        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 44px !important;

        text-align: center !important;
    }


    .dw-about-difference-header h2 {
        width: 100% !important;
        max-width: 760px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .dw-about-difference-header p {
        width: 100% !important;
        max-width: 680px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       MAIN LAYOUT

       LEFT:
       2 x 2 difference cards

       RIGHT:
       Our Story
    ===================================================== */

    .dw-about-difference-grid {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(360px, 0.65fr) !important;

        align-items: stretch !important;

        gap: 30px !important;

        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       DIFFERENCE CARDS
       Change from 4 skinny columns to 2 x 2
    ===================================================== */

    .dw-about-difference-cards {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        align-items: stretch !important;

        gap: 20px !important;

        width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box !important;
    }


    .dw-about-difference-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 285px !important;

        margin: 0 !important;
        padding: 30px 26px !important;

        text-align: center !important;

        border-radius: 20px !important;

        box-sizing: border-box !important;
    }


    /* Icon */
    .dw-about-difference-icon-image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 72px !important;
        height: 72px !important;

        margin: 0 auto 22px !important;
    }


    .dw-about-difference-icon-image img {
        display: block !important;

        width: 64px !important;
        max-width: 64px !important;
        height: auto !important;

        object-fit: contain !important;
    }


    .dw-about-difference-card h3 {
        width: 100% !important;

        margin: 0 0 13px !important;

        text-align: center !important;
        line-height: 1.15 !important;
    }


    .dw-about-difference-card p {
        width: 100% !important;
        max-width: 300px !important;

        margin: 0 auto !important;

        text-align: center !important;
        line-height: 1.6 !important;
    }


    /* =====================================================
       OUR STORY
    ===================================================== */

    .dw-about-story-card {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 590px !important;

        margin: 0 !important;
        padding: 38px 36px !important;

        overflow: hidden !important;

        border-radius: 24px !important;

        box-sizing: border-box !important;
    }


    .dw-about-story-content {
        position: relative !important;

        width: 100% !important;
        max-width: 330px !important;

        z-index: 4 !important;
    }


    .dw-about-story-content h3 {
        margin: 0 0 18px !important;
    }


    .dw-about-story-content p {
        width: 100% !important;
        max-width: 320px !important;

        line-height: 1.62 !important;
    }


    .dw-about-story-content p + p {
        margin-top: 16px !important;
    }


    /* =====================================================
       STORY ROCKET
    ===================================================== */

    .dw-about-story-rocket {
        position: absolute !important;

        right: -18px !important;
        bottom: -38px !important;
        left: auto !important;
        top: auto !important;

        width: 210px !important;
        max-width: 55% !important;

        transform: none !important;

        pointer-events: none !important;

        z-index: 2 !important;
    }


    .dw-about-story-rocket img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        object-fit: contain !important;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .dw-about-stats-row {
        display: grid !important;

        grid-template-columns:
            repeat(4, minmax(0, 1fr)) !important;

        gap: 16px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin-top: 32px !important;

        box-sizing: border-box !important;
    }


    .dw-about-stat-item {
        width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   1240px AND BELOW
   STORY GOES UNDER THE 4 CARDS
========================================================= */

@media (max-width: 1240px) {

    .dw-about-difference-box {
        width: calc(100% - 60px) !important;
        max-width: 1080px !important;
    }


    .dw-about-difference-grid {
        grid-template-columns: 1fr !important;

        gap: 24px !important;
    }


    /* =====================================================
       CARDS REMAIN 2 x 2
    ===================================================== */

    .dw-about-difference-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 18px !important;
    }


    .dw-about-difference-card {
        min-height: 260px !important;

        padding: 28px 24px !important;
    }


    /* =====================================================
       STORY BECOMES WIDE
    ===================================================== */

    .dw-about-story-card {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            260px !important;

        align-items: center !important;

        min-height: 390px !important;

        padding: 40px 42px !important;

        gap: 30px !important;
    }


    .dw-about-story-content {
        width: 100% !important;
        max-width: 620px !important;
    }


    .dw-about-story-content p {
        max-width: 600px !important;
    }


    /* Rocket now has its own area */
    .dw-about-story-rocket {
        position: relative !important;

        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        top: auto !important;

        align-self: end !important;
        justify-self: center !important;

        width: 220px !important;
        max-width: 220px !important;

        margin: 0 auto -45px !important;

        transform: none !important;
    }

}


/* =========================================================
   991px AND BELOW
========================================================= */

@media (max-width: 991px) {

    .dw-about-difference-box {
        width: calc(100% - 48px) !important;
        max-width: 820px !important;
    }


    .dw-about-difference-header {
        margin-bottom: 36px !important;
    }


    /* =====================================================
       2 x 2 CARDS
    ===================================================== */

    .dw-about-difference-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 16px !important;
    }


    .dw-about-difference-card {
        min-height: 245px !important;

        padding: 26px 20px !important;

        border-radius: 18px !important;
    }


    .dw-about-difference-icon-image {
        width: 62px !important;
        height: 62px !important;

        margin-bottom: 18px !important;
    }


    .dw-about-difference-icon-image img {
        width: 56px !important;
        max-width: 56px !important;
    }


    /* =====================================================
       STORY
    ===================================================== */

    .dw-about-story-card {
        grid-template-columns:
            minmax(0, 1fr)
            190px !important;

        min-height: 360px !important;

        padding: 34px 32px !important;

        gap: 20px !important;
    }


    .dw-about-story-rocket {
        width: 180px !important;
        max-width: 180px !important;

        margin-bottom: -40px !important;
    }


    /* =====================================================
       STATS 2 x 2
    ===================================================== */

    .dw-about-stats-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 14px !important;

        margin-top: 24px !important;
    }

}


/* =========================================================
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {

    .dw-about-difference-box {
        width: calc(100% - 40px) !important;
        max-width: 640px !important;
    }


    .dw-about-difference-header {
        margin-bottom: 30px !important;
    }


    /* =====================================================
       CARDS STILL 2 COLUMNS IF THERE IS ROOM
    ===================================================== */

    .dw-about-difference-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 14px !important;
    }


    .dw-about-difference-card {
        min-height: 230px !important;

        padding: 24px 18px !important;
    }


    /* =====================================================
       STORY STACKS
    ===================================================== */

    .dw-about-story-card {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        min-height: 0 !important;
        height: auto !important;

        padding: 30px 28px 0 !important;

        gap: 20px !important;
    }


    .dw-about-story-content {
        width: 100% !important;
        max-width: 100% !important;

        text-align: center !important;
    }


    .dw-about-story-content p {
        width: 100% !important;
        max-width: 560px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .dw-about-story-btn {
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* Rocket belongs to flow now */
    .dw-about-story-rocket {
        position: relative !important;

        width: 155px !important;
        max-width: 155px !important;

        margin: 0 auto -25px !important;

        transform: none !important;
    }

}


/* =========================================================
   620px AND BELOW
   ONE DIFFERENCE CARD PER ROW
========================================================= */

@media (max-width: 620px) {

    .dw-about-difference-box {
        width: calc(100% - 32px) !important;
    }


    .dw-about-difference-cards {
        grid-template-columns: 1fr !important;

        gap: 14px !important;
    }


    .dw-about-difference-card {
        display: grid !important;

        grid-template-columns:
            60px
            minmax(0, 1fr) !important;

        grid-template-areas:
            "icon title"
            "icon copy" !important;

        align-items: center !important;

        column-gap: 18px !important;
        row-gap: 6px !important;

        min-height: 0 !important;

        padding: 22px 20px !important;

        text-align: left !important;
    }


    .dw-about-difference-icon-image {
        grid-area: icon !important;

        width: 56px !important;
        height: 56px !important;

        margin: 0 !important;
    }


    .dw-about-difference-icon-image img {
        width: 50px !important;
        max-width: 50px !important;
    }


    .dw-about-difference-card h3 {
        grid-area: title !important;

        margin: 0 !important;

        text-align: left !important;
    }


    .dw-about-difference-card p {
        grid-area: copy !important;

        max-width: 100% !important;

        margin: 0 !important;

        text-align: left !important;
    }


    /* =====================================================
       STORY
    ===================================================== */

    .dw-about-story-card {
        padding: 28px 22px 0 !important;

        border-radius: 20px !important;
    }


    .dw-about-story-rocket {
        width: 135px !important;
        max-width: 135px !important;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .dw-about-stats-row {
        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }


    .dw-about-stat-item {
        max-width: 460px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}


/* =========================================================
   420px AND BELOW
========================================================= */

@media (max-width: 420px) {

    .dw-about-difference-box {
        width: calc(100% - 26px) !important;
    }


    .dw-about-difference-card {
        grid-template-columns:
            48px
            minmax(0, 1fr) !important;

        column-gap: 14px !important;

        padding: 19px 16px !important;

        border-radius: 16px !important;
    }


    .dw-about-difference-icon-image {
        width: 46px !important;
        height: 46px !important;
    }


    .dw-about-difference-icon-image img {
        width: 42px !important;
        max-width: 42px !important;
    }


    .dw-about-difference-card h3 {
        font-size: 18px !important;
        line-height: 1.15 !important;
    }


    .dw-about-difference-card p {
        line-height: 1.5 !important;
    }


    .dw-about-story-card {
        padding: 25px 18px 0 !important;
    }


    .dw-about-story-rocket {
        width: 115px !important;
        max-width: 115px !important;
    }

}


/* =========================================================
   300px AND BELOW
========================================================= */

@media (max-width: 300px) {

    .dw-about-difference-box {
        width: calc(100% - 20px) !important;
    }


    /* Cards become normal vertical blocks again */
    .dw-about-difference-card {
        display: flex !important;
        flex-direction: column !important;

        padding: 18px 14px !important;

        text-align: center !important;
    }


    .dw-about-difference-icon-image {
        margin: 0 auto 12px !important;
    }


    .dw-about-difference-card h3,
    .dw-about-difference-card p {
        text-align: center !important;
    }


    .dw-about-story-card {
        padding: 22px 14px 0 !important;
    }


    .dw-about-story-content h3 {
        font-size: 28px !important;
    }


    .dw-about-story-rocket {
        width: 100px !important;
        max-width: 100px !important;
    }


    .dw-about-stat-item {
        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   EXTREME SMALL — 240px AND BELOW
========================================================= */

@media (max-width: 240px) {

    .dw-about-difference-box {
        width: calc(100% - 14px) !important;
    }


    .dw-about-difference-card {
        padding: 16px 10px !important;
    }


    .dw-about-story-card {
        padding: 20px 10px 0 !important;
    }


    .dw-about-story-btn {
        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        box-sizing: border-box !important;
    }

}

/* =========================================================
   CUSTOM + READY-TO-GO OPTIONS
   RESPONSIVE RESTRUCTURE
   1198px AND BELOW
========================================================= */

@media (max-width: 1199px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .dw-launch-options-section {
        position: relative !important;

        padding-top: 82px !important;
        padding-bottom: 86px !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .dw-launch-options-container {
        width: calc(100% - 64px) !important;
        max-width: 1080px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .dw-launch-options-heading {
        width: 100% !important;
        max-width: 820px !important;

        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 52px !important;

        text-align: center !important;
    }


    .dw-launch-options-heading h2 {
        width: 100% !important;
        max-width: 760px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        line-height: 1.06 !important;
    }


    .dw-launch-options-lead {
        width: 100% !important;
        max-width: 760px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        line-height: 1.65 !important;
    }


    /* =====================================================
       MAIN LAYOUT
       TWO BALANCED CARDS
    ===================================================== */

    .dw-launch-options-grid {
        position: relative !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        grid-template-areas:
            "custom ready" !important;

        align-items: stretch !important;

        gap: 26px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    .dw-launch-card-custom {
        grid-area: custom !important;
    }


    .dw-launch-card-ready {
        grid-area: ready !important;
    }


    /* =====================================================
       CARDS
    ===================================================== */

    .dw-launch-option-card {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;

        padding: 38px 34px !important;

        border-radius: 28px !important;

        box-sizing: border-box !important;

        z-index: 3 !important;
    }


    .dw-launch-option-card h3 {
        line-height: 1.15 !important;
    }


    .dw-launch-option-card > p {
        line-height: 1.65 !important;
    }


    /* =====================================================
       ROCKET
       Integrated in the center as a subtle visual element
       instead of creating a third giant column.
    ===================================================== */

    .dw-launch-options-rocket-stage {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        width: 240px !important;
        max-width: 240px !important;

        height: 330px !important;
        min-height: 0 !important;

        margin: 0 !important;

        transform: translate(-50%, -50%) !important;

        pointer-events: none !important;

        z-index: 1 !important;
    }


    .dw-launch-options-rocket-stage > img {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        display: block !important;

        width: 190px !important;
        max-width: 190px !important;

        height: auto !important;

        margin: 0 !important;

        object-fit: contain !important;

        opacity: 0.16 !important;

        transform: translate(-50%, -50%) !important;

        filter:
            drop-shadow(
                0 20px 40px rgba(45, 128, 183, 0.12)
            ) !important;
    }


    .dw-launch-rocket-glow {
        width: 240px !important;
        height: 240px !important;

        opacity: 0.35 !important;
    }


    .dw-launch-rocket-orbit {
        width: 270px !important;
        height: 270px !important;

        opacity: 0.18 !important;
    }


    /* =====================================================
       FEATURE ROW — CUSTOM CARD
    ===================================================== */

    .dw-launch-feature-row {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 16px !important;

        width: 100% !important;
    }


    .dw-launch-feature-item {
        min-width: 0 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       READY-TO-GO LIST
    ===================================================== */

    .dw-launch-check-list {
        width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    .dw-launch-ready-note {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   991px AND BELOW
   STACKED PREMIUM LAYOUT
========================================================= */

@media (max-width: 991px) {

    .dw-launch-options-section {
        padding-top: 72px !important;
        padding-bottom: 76px !important;
    }


    .dw-launch-options-container {
        width: calc(100% - 48px) !important;
        max-width: 780px !important;
    }


    .dw-launch-options-heading {
        max-width: 700px !important;

        margin-bottom: 40px !important;
    }


    /* =====================================================
       STACK
    ===================================================== */

    .dw-launch-options-grid {
        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        gap: 0 !important;

        width: 100% !important;
    }


    /* =====================================================
       CUSTOM FIRST
    ===================================================== */

    .dw-launch-card-custom {
        order: 1 !important;
    }


    /* =====================================================
       ROCKET SECOND
       Becomes a visual connector between both options.
    ===================================================== */

    .dw-launch-options-rocket-stage {
        order: 2 !important;

        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 620px !important;

        height: 210px !important;

        margin: 10px auto !important;

        transform: none !important;

        overflow: hidden !important;

        z-index: 2 !important;
    }


    .dw-launch-options-rocket-stage > img {
        position: relative !important;

        top: auto !important;
        left: auto !important;

        width: 170px !important;
        max-width: 170px !important;

        height: auto !important;

        margin: 0 auto !important;

        opacity: 0.72 !important;

        transform: none !important;

        object-fit: contain !important;

        z-index: 3 !important;
    }


    .dw-launch-rocket-glow {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        width: 260px !important;
        height: 180px !important;

        transform: translate(-50%, -50%) !important;

        opacity: 0.35 !important;
    }


    .dw-launch-rocket-orbit {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        width: 300px !important;
        height: 170px !important;

        transform: translate(-50%, -50%) !important;

        opacity: 0.18 !important;
    }


    /* =====================================================
       READY THIRD
    ===================================================== */

    .dw-launch-card-ready {
        order: 3 !important;
    }


    /* =====================================================
       BOTH CARDS
    ===================================================== */

    .dw-launch-option-card {
        width: 100% !important;
        max-width: 700px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 36px 32px !important;
    }

}


/* =========================================================
   767px AND BELOW
========================================================= */

@media (max-width: 767px) {

    .dw-launch-options-section {
        padding-top: 64px !important;
        padding-bottom: 68px !important;
    }


    .dw-launch-options-container {
        width: calc(100% - 40px) !important;
        max-width: 620px !important;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .dw-launch-options-heading {
        margin-bottom: 32px !important;
    }


    .dw-launch-options-heading h2 br {
        display: none !important;
    }


    /* =====================================================
       CARDS
    ===================================================== */

    .dw-launch-option-card {
        max-width: 580px !important;

        padding: 30px 26px !important;

        border-radius: 24px !important;
    }


    /* =====================================================
       CUSTOM FEATURES
    ===================================================== */

    .dw-launch-feature-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 13px !important;
    }


    /* =====================================================
       ROCKET
    ===================================================== */

    .dw-launch-options-rocket-stage {
        height: 180px !important;

        margin: 8px auto !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 145px !important;
        max-width: 145px !important;
    }


    .dw-launch-rocket-glow {
        width: 220px !important;
        height: 150px !important;
    }


    .dw-launch-rocket-orbit {
        width: 250px !important;
        height: 145px !important;
    }

}


/* =========================================================
   620px AND BELOW
========================================================= */

@media (max-width: 620px) {

    .dw-launch-options-container {
        width: calc(100% - 32px) !important;
    }


    .dw-launch-option-card {
        padding: 28px 22px !important;
    }


    /* =====================================================
       FEATURES BECOME COMPACT ROWS
    ===================================================== */

    .dw-launch-feature-row {
        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }


    .dw-launch-feature-item {
        display: flex !important;

        align-items: center !important;

        gap: 14px !important;

        width: 100% !important;

        text-align: left !important;
    }


    .dw-launch-feature-item > span {
        flex: 0 0 auto !important;
    }


    /* =====================================================
       ROCKET
    ===================================================== */

    .dw-launch-options-rocket-stage {
        height: 155px !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 120px !important;
        max-width: 120px !important;
    }


    .dw-launch-rocket-glow {
        width: 190px !important;
        height: 125px !important;
    }


    .dw-launch-rocket-orbit {
        width: 210px !important;
        height: 125px !important;
    }


    /* =====================================================
       READY NOTE
    ===================================================== */

    .dw-launch-ready-note {
        display: flex !important;

        align-items: flex-start !important;

        gap: 14px !important;

        padding: 18px !important;
    }

}


/* =========================================================
   420px AND BELOW
========================================================= */

@media (max-width: 420px) {

    .dw-launch-options-container {
        width: calc(100% - 26px) !important;
    }


    .dw-launch-options-heading h2 {
        line-height: 1.08 !important;
    }


    .dw-launch-option-card {
        padding: 24px 18px !important;

        border-radius: 20px !important;
    }


    .dw-launch-card-icon {
        transform: scale(0.9) !important;

        transform-origin: left center !important;
    }


    .dw-launch-options-rocket-stage {
        height: 135px !important;

        margin: 6px auto !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 100px !important;
        max-width: 100px !important;
    }


    .dw-launch-rocket-glow {
        width: 160px !important;
        height: 105px !important;
    }


    .dw-launch-rocket-orbit {
        width: 180px !important;
        height: 105px !important;
    }


    .dw-launch-ready-note {
        padding: 15px !important;
    }

}


/* =========================================================
   337px AND BELOW
========================================================= */

@media (max-width: 337px) {

    .dw-launch-options-container {
        width: calc(100% - 20px) !important;
    }


    .dw-launch-option-card {
        width: 100% !important;
        max-width: 100% !important;

        min-width: 0 !important;

        padding: 21px 14px !important;

        box-sizing: border-box !important;
    }


    .dw-launch-option-card h3,
    .dw-launch-option-card p,
    .dw-launch-check-list,
    .dw-launch-ready-note,
    .dw-launch-feature-row {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box !important;
    }


    .dw-launch-options-rocket-stage {
        height: 120px !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 88px !important;
        max-width: 88px !important;
    }

}

/* =========================================================
   CUSTOM + READY-TO-GO
   NEW RESPONSIVE DESIGN
   990px AND BELOW
========================================================= */

@media (max-width: 990px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .dw-launch-options-section {
        position: relative !important;

        padding: 72px 0 78px !important;

        overflow: hidden !important;
    }


    /* =====================================================
       CONTAINER
    ===================================================== */

    .dw-launch-options-container {
        width: calc(100% - 48px) !important;
        max-width: 900px !important;

        margin: 0 auto !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .dw-launch-options-heading {
        width: 100% !important;
        max-width: 760px !important;

        margin: 0 auto 40px !important;

        text-align: center !important;
    }


    .dw-launch-options-heading h2 {
        width: 100% !important;
        max-width: 680px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        line-height: 1.07 !important;
    }


    .dw-launch-options-lead {
        width: 100% !important;
        max-width: 700px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        line-height: 1.65 !important;
    }


    /* =====================================================
       MAIN OPTIONS

       Keep BOTH cards side by side.
       Rocket no longer creates a third column.
    ===================================================== */

    .dw-launch-options-grid {
        position: relative !important;

        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        grid-template-areas:
            "custom ready" !important;

        align-items: stretch !important;

        gap: 22px !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        box-sizing: border-box !important;
    }


    .dw-launch-card-custom {
        grid-area: custom !important;
    }


    .dw-launch-card-ready {
        grid-area: ready !important;
    }


    /* =====================================================
       CARDS
    ===================================================== */

    .dw-launch-option-card {
        position: relative !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        height: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;

        padding: 34px 28px !important;

        border-radius: 26px !important;

        box-sizing: border-box !important;

        z-index: 3 !important;
    }


    .dw-launch-option-card h3 {
        line-height: 1.15 !important;
    }


    .dw-launch-option-card > p {
        line-height: 1.62 !important;
    }


    /* =====================================================
       ROCKET = WATERMARK / DECORATION

       Does NOT consume layout height.
    ===================================================== */

    .dw-launch-options-rocket-stage {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        display: block !important;

        width: 210px !important;
        height: 300px !important;

        margin: 0 !important;

        transform:
            translate(-50%, -50%) !important;

        pointer-events: none !important;

        overflow: visible !important;

        z-index: 1 !important;
    }


    .dw-launch-options-rocket-stage > img {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        display: block !important;

        width: 155px !important;
        max-width: 155px !important;

        height: auto !important;

        margin: 0 !important;

        opacity: 0.12 !important;

        object-fit: contain !important;

        transform:
            translate(-50%, -50%) !important;

        filter:
            drop-shadow(
                0 20px 40px rgba(45, 128, 183, 0.10)
            ) !important;
    }


    .dw-launch-rocket-glow {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        width: 220px !important;
        height: 220px !important;

        transform:
            translate(-50%, -50%) !important;

        opacity: 0.20 !important;
    }


    .dw-launch-rocket-orbit {
        position: absolute !important;

        top: 50% !important;
        left: 50% !important;

        width: 260px !important;
        height: 260px !important;

        transform:
            translate(-50%, -50%) !important;

        opacity: 0.10 !important;
    }


    /* =====================================================
       CUSTOM FEATURES
    ===================================================== */

    .dw-launch-feature-row {
        display: grid !important;

        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;

        gap: 13px !important;

        width: 100% !important;
    }


    .dw-launch-feature-item {
        min-width: 0 !important;

        box-sizing: border-box !important;
    }


    /* =====================================================
       READY LIST
    ===================================================== */

    .dw-launch-check-list {
        width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    .dw-launch-ready-note {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }

}


/* =========================================================
   767px AND BELOW
   NOW STACK THE CARDS
========================================================= */

@media (max-width: 767px) {

    .dw-launch-options-section {
        padding: 64px 0 68px !important;
    }


    .dw-launch-options-container {
        width: calc(100% - 40px) !important;
        max-width: 620px !important;
    }


    .dw-launch-options-heading {
        margin-bottom: 32px !important;
    }


    .dw-launch-options-heading h2 br {
        display: none !important;
    }


    /* =====================================================
       ONE CARD PER ROW
    ===================================================== */

    .dw-launch-options-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        grid-template-areas:
            "custom"
            "ready" !important;

        gap: 22px !important;

        position: relative !important;
    }


    .dw-launch-option-card {
        width: 100% !important;
        max-width: 580px !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 30px 26px !important;

        border-radius: 24px !important;
    }


    /* =====================================================
       ROCKET

       Now sits behind the space between both cards,
       but still does NOT create extra height.
    ===================================================== */

    .dw-launch-options-rocket-stage {
        top: 50% !important;
        left: 50% !important;

        width: 180px !important;
        height: 180px !important;

        transform:
            translate(-50%, -50%) !important;

        z-index: 2 !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 125px !important;
        max-width: 125px !important;

        opacity: 0.13 !important;
    }


    .dw-launch-rocket-glow {
        width: 180px !important;
        height: 180px !important;

        opacity: 0.18 !important;
    }


    .dw-launch-rocket-orbit {
        width: 205px !important;
        height: 205px !important;

        opacity: 0.08 !important;
    }

}


/* =========================================================
   620px AND BELOW
========================================================= */

@media (max-width: 620px) {

    .dw-launch-options-container {
        width: calc(100% - 32px) !important;
    }


    .dw-launch-options-grid {
        gap: 18px !important;
    }


    .dw-launch-option-card {
        padding: 27px 22px !important;
    }


    /* =====================================================
       CUSTOM FEATURES BECOME SIMPLE ROWS
    ===================================================== */

    .dw-launch-feature-row {
        grid-template-columns: 1fr !important;

        gap: 9px !important;
    }


    .dw-launch-feature-item {
        display: flex !important;

        align-items: center !important;

        gap: 13px !important;

        text-align: left !important;
    }


    .dw-launch-feature-item > span {
        flex: 0 0 auto !important;
    }


    /* =====================================================
       ROCKET SMALLER
    ===================================================== */

    .dw-launch-options-rocket-stage {
        width: 150px !important;
        height: 150px !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 100px !important;
        max-width: 100px !important;

        opacity: 0.10 !important;
    }


    .dw-launch-rocket-glow {
        width: 145px !important;
        height: 145px !important;
    }


    .dw-launch-rocket-orbit {
        width: 165px !important;
        height: 165px !important;
    }

}


/* =========================================================
   420px AND BELOW
========================================================= */

@media (max-width: 420px) {

    .dw-launch-options-container {
        width: calc(100% - 26px) !important;
    }


    .dw-launch-option-card {
        padding: 24px 18px !important;

        border-radius: 20px !important;
    }


    .dw-launch-options-grid {
        gap: 16px !important;
    }


    /* At this size the rocket should be extremely subtle */
    .dw-launch-options-rocket-stage {
        width: 120px !important;
        height: 120px !important;
    }


    .dw-launch-options-rocket-stage > img {
        width: 80px !important;
        max-width: 80px !important;

        opacity: 0.08 !important;
    }


    .dw-launch-rocket-glow,
    .dw-launch-rocket-orbit {
        opacity: 0.06 !important;
    }


    .dw-launch-ready-note {
        padding: 16px !important;
    }

}


/* =========================================================
   337px AND BELOW
========================================================= */

@media (max-width: 337px) {

    .dw-launch-options-container {
        width: calc(100% - 20px) !important;
    }


    .dw-launch-option-card {
        padding: 21px 14px !important;

        min-width: 0 !important;
    }


    .dw-launch-option-card h3,
    .dw-launch-option-card p,
    .dw-launch-check-list,
    .dw-launch-feature-row,
    .dw-launch-ready-note {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        box-sizing: border-box !important;
    }


    /*
       At ultra-small widths the rocket can disappear.
       The content becomes more important than decoration.
    */

    .dw-launch-options-rocket-stage {
        display: none !important;
    }

}
