:root {
  --dshdr-navy: #1a2a44;
  --dshdr-navy-2: #23334c;
  --dshdr-navy-deep: #101a2c;
  --dshdr-steel: #cbcbd1;
  --dshdr-steel-dark: #8a8e98;
  --dshdr-accent: #e07b1a;
  --dshdr-accent-2: #ffa04d;
  --dshdr-ink: #1c1f26;
  --dshdr-white: #ffffff;
  --dshdr-steel-tint: #eef1f5;
  --dshdr-muted: #5b5f68;
  --tstm-primary: #e07b1a;
  --tstm-primary-light: #e8f2fe;
  --tstm-ink: #182231;
  --tstm-muted: #5c6779;
  --tstm-white: #ffffff;
  --tstm-border: #e9edf3;
  --crimson: #e07b1a;
  --crimson-d: #ff7700;
  --navy: #162740;
  --gold: #c9a84c;
  --gold-l: #e8cc7a;
  --tstm-font: "Manrope", sans-serif;
  --dshdr-font-head: "Barlow Condensed", sans-serif;
  --dshdr-font-body: "Barlow", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--dshdr-font-body);
  background: #eef0f2;
}

.dshdr-preview-note {
  background: var(--dshdr-navy-deep);
  color: var(--dshdr-steel);
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===== TOP BAR ===== */
.dshdr-topbar {
  background: var(--dshdr-white);
  border-bottom: 1px solid #e4e5e8;
}

.dshdr-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.dshdr-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dshdr-logo img {
  height: 85px;
  width: auto;
  display: block;
  border: none;
  outline: none;
}

.dshdr-logo:focus,
.dshdr-logo:focus-visible {
  outline: 2px solid var(--dshdr-accent);
  outline-offset: 3px;
}

.dshdr-logo__blade {
  width: 5px;
  height: 44px;
  background: linear-gradient(
    180deg,
    var(--dshdr-steel) 0%,
    var(--dshdr-navy) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
}

.dshdr-topbar__info {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.dshdr-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dshdr-info__icon {
  width: 50px;
  height: 50px;
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );
  background: linear-gradient(135deg, #eef0f2 0%, #dfe1e5 100%);
  color: var(--dshdr-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.dshdr-info__label {
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--dshdr-ink);
  margin: 0;
  text-transform: uppercase;
}

.dshdr-info__label span {
  font-family: var(--dshdr-font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #5b5f68;
  display: block;
  font-size: 14px;
}

.dshdr-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dshdr-social__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #dcdde1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-navy);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.dshdr-social__link:hover {
  background: var(--dshdr-navy);
  color: var(--dshdr-white);
  border-color: var(--dshdr-navy);
  transform: translateY(-2px);
}

/* ===== HERO WRAP (nav overlays this, then sticks) ===== */
.dshdr-hero-wrap {
  position: relative;
}

/* ===== MAIN NAV ===== */
.dshdr-nav-outer {
  background: transparent;
  padding: 10px 0 26px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

.dshdr-nav-outer.dshdr-nav-stuck {
  position: fixed;
  /* background:#eef0f2; */
  padding: 0px 0;
  /* box-shadow:0 10px 24px rgba(16,26,44,.18); */
  animation: dshdrSlideDown 0.35s ease;
}

@keyframes dshdrSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.dshdr-nav-shell {
  background: linear-gradient(
    180deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-navy-2) 100%
  );
  position: relative;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(16, 26, 44, 0.16);
  overflow: visible;
}

.dshdr-nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(
    90deg,
    var(--dshdr-steel-dark) 0%,
    var(--dshdr-accent) 50%,
    var(--dshdr-steel-dark) 100%
  );
  opacity: 0.6;
}

.dshdr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0px 24px;
}

.dshdr-nav-wrap {
  position: relative;
}

.dshdr-nav {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
}

.dshdr-nav__item {
  position: relative;
}

.dshdr-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d7dbe3;
  text-decoration: none;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 25px 25px;
  position: relative;
  z-index: 2;
  transition:
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.dshdr-nav__link i.ti-chev {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.dshdr-nav__item:hover .dshdr-nav__link i.ti-chev {
  transform: rotate(180deg);
}

.dshdr-nav__link:hover,
.dshdr-nav__item.dshdr-active > .dshdr-nav__link {
  color: var(--dshdr-white);
  letter-spacing: 0.08em;
}

.dshdr-nav__blob {
  position: absolute;
  top: 0px;
  left: 50%;
  width: 20px;
  height: 12px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--dshdr-accent);
  box-shadow: 0px 3px 9px 2px rgb(255 125 0);
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 30%;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dshdr-nav__item:hover .dshdr-nav__blob,
.dshdr-nav__item.dshdr-active .dshdr-nav__blob {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.dshdr-nav__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition:
    left 0.35s cubic-bezier(0.22, 0.9, 0.35, 1),
    width 0.35s cubic-bezier(0.22, 0.9, 0.35, 1),
    opacity 0.25s ease;
  opacity: 0;
}

.dshdr-nav-wrap:hover .dshdr-nav__indicator,
.dshdr-nav__indicator.dshdr-ready {
  opacity: 1;
}

/* dropdown */
.dshdr-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dshdr-white);
  border-top: 3px solid var(--dshdr-accent);
  box-shadow: 0 18px 32px rgba(16, 26, 44, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 20;
}

.dshdr-nav__item:hover > .dshdr-dropdown,
.dshdr-nav__item.dshdr-open > .dshdr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dshdr-dropdown__item {
  position: relative;
}

.dshdr-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  color: var(--dshdr-ink);
  text-decoration: none;
  font-family: var(--dshdr-font-body);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: 6px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.dshdr-dropdown__link:hover {
  background: #f4f5f7;
  color: var(--dshdr-navy);
  padding-left: 19px;
}

.dshdr-dropdown__link i.ti-prod {
  color: var(--dshdr-accent);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

/* second level (kept ready for future product categories) */
.dshdr-dropdown .dshdr-dropdown {
  top: -8px;
  left: 100%;
}

/* CTA — diagonal blade shape, echoes the logo's slanted forms */
.dshdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  color: var(--dshdr-white);
  text-decoration: none;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px 15px 22px;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
  transition: filter 0.25s ease;
}

.dshdr-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.dshdr-cta:hover::before {
  left: 130%;
}

.dshdr-cta:hover {
  filter: brightness(1.06);
  color: var(--dshdr-white);
}

.dshdr-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.dshdr-nav-divider {
  width: 2px;
  height: 34px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--dshdr-steel-dark) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  flex-shrink: 0;
}

/* mobile toggle */
.dshdr-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #000;
  color: var(--dshdr-white);
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.dshdr-nav-close {
  display: none;
}

@media (max-width: 991.98px) {
  .dshdr-topbar__info {
    display: none;
  }

  .dshdr-burger {
    display: flex;
    margin: 0 12px;
  }

  .dshdr-nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 82%;
    max-width: 340px;
    background: var(--dshdr-navy-deep);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 50;
    overflow-y: auto;
    padding: 70px 0 30px;
  }

  .dshdr-nav-wrap.dshdr-nav-open {
    transform: translateX(0);
  }

  .dshdr-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .dshdr-nav__blob {
    display: none;
  }

  .dshdr-nav__link {
    padding: 16px 24px;
    justify-content: space-between;
  }

  .dshdr-nav__indicator {
    display: none;
  }

  .dshdr-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(255, 255, 255, 0.04);
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    transition: max-height 0.3s ease;
  }

  .dshdr-nav__item.dshdr-open > .dshdr-dropdown {
    max-height: 400px;
    padding: 8px;
  }

  .dshdr-dropdown__link {
    color: #d7dbe3;
  }

  .dshdr-dropdown__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--dshdr-white);
  }

  .dshdr-nav-right {
    display: none;
  }

  .dshdr-nav-outer {
    padding: 0;
    background: transparent;
  }

  .dshdr-nav-outer.dshdr-nav-stuck {
    padding: 0;
    background: var(--dshdr-navy-deep);
  }

  .dshdr-nav-shell {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .dshdr-nav-shell::after {
    display: none;
  }

  .dshdr-nav-inner {
    padding: 0;
    min-height: 0;
  }

  .dshdr-nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--dshdr-white);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .dshdr-topbar__info {
    gap: 16px;
  }

  .dshdr-info__label {
    font-size: 11.5px;
  }

  .dshdr-info__label span {
    font-size: 11.5px;
  }
}

/* ===== SECTION SHELL ===== */
.dsab-about {
  position: relative;
  padding: 75px 0 50px;
  overflow: hidden;
  background:
    radial-gradient(
      720px 420px at 96% 6%,
      rgba(203, 203, 209, 0.35) 0%,
      rgba(203, 203, 209, 0) 70%
    ),
    radial-gradient(
      640px 420px at 4% 100%,
      rgba(224, 123, 26, 0.08) 0%,
      rgba(224, 123, 26, 0) 70%
    ),
    var(--dshdr-white);
}

/* ===== BACKGROUND MARQUEE TEXT ===== */
.dsab-marquee {
  position: absolute;
  top: 52%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.dsab-marquee-track {
  display: flex;
  width: max-content;
  animation: dsabMarquee 38s linear infinite;
}

.dsab-marquee-item {
  display: flex;
  align-items: center;
}

.dsab-marquee-text {
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: clamp(64px, 10vw, 150px);
  line-height: 1;
  width: max-content;
  margin: 0 26px 0 0;
  color: transparent;
  -webkit-text-stroke: 1px rgb(0 0 0 / 20%);
  white-space: nowrap;
}

@keyframes dsabMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dsab-marquee-track {
    animation: none;
  }
}

.dsab-about .container {
  position: relative;
  z-index: 1;
}

/* ===== MEDIA / IMAGE COLLAGE ===== */
.dsab-media {
  position: relative;
  /* max-width: 540px; */
  padding: 26px 30px 60px 26px;
}

.dsab-media__ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  z-index: 0;
}

.dsab-media__ring-solid {
  position: absolute;
  top: -60px;
  left: -100px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(178deg, #e1e1e100 0%, #001b460d 2%);
}

.dsab-media__ring-dots {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: radial-gradient(
    var(--dshdr-accent) 1.6px,
    transparent 1.6px
  );
  background-size: 11px 11px;
  opacity: 0.9;
}

.dsab-media__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 550px;
}

.dsab-media__photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(16, 26, 44, 0.18);
}

.dsab-media__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dsab-media__photo--main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.dsab-media__photo--top {
  grid-column: 2;
  grid-row: 1;
}

.dsab-media__photo--video {
  grid-column: 2;
  grid-row: 2;
}

.dsab-media__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 26, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-white);
  font-size: 15px;
  backdrop-filter: blur(2px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.dsab-media__photo--video:hover .dsab-media__video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--dshdr-accent);
}

.dsab-media__stat {
  position: absolute;
  left: 100px;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(
    150deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-navy-2) 55%,
    var(--dshdr-navy-deep) 100%
  );
  color: var(--dshdr-white);
  padding: 20px 28px 20px 20px;
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 20px 38px rgba(16, 26, 44, 0.32);
  min-width: 230px;
  overflow: hidden;
}

.dsab-media__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0 2px,
    transparent 2px 10px
  );
  pointer-events: none;
}

.dsab-media__stat::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
}

.dsab-media__stat-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--dshdr-white);
  box-shadow: 0 8px 18px rgba(224, 123, 26, 0.45);
}

.dsab-media__stat-copy {
  position: relative;
  z-index: 1;
}

.dsab-media__stat-num {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  margin: 0 0 4px;
}

.dsab-media__stat-label {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--dshdr-steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
}

/* ===== CONTENT ===== */
.dsab-content {
  max-width: 560px;
}

.dsab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dshdr-steel-tint);
  border: 1px solid #e1e4e9;
  color: var(--dshdr-navy);
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.dsab-badge i {
  color: var(--dshdr-accent);
  font-size: 11px;
}

.dsab-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.12;
  color: var(--dshdr-ink);
  margin: 0 0 20px;
}

.dsab-heading__accent {
  position: relative;
  display: inline-block;
  color: var(--dshdr-navy);
}

.dsab-heading__accent svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
}

.dsab-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dshdr-muted);
  margin: 0 0 30px;
}

.dsab-checklist {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.dsab-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--dshdr-ink);
}

.dsab-checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(224, 123, 26, 0.12);
  color: var(--dshdr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.dsab-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-navy-2) 100%
  );
  color: var(--dshdr-white);
  text-decoration: none;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 6px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.dsab-cta i {
  transition: transform 0.25s ease;
}

.dsab-cta:hover {
  color: var(--dshdr-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(16, 26, 44, 0.28);
}

.dsab-cta:hover i {
  transform: translateX(4px);
}

/* ===== BOTTOM DOT ARCS ===== */
.dsab-arcs {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  z-index: 0;
  opacity: 0.5;
}

.dsab-arcs svg {
  width: 220px;
  height: 120px;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.9, 0.35, 1);
  transition-delay: var(--dsab-delay, 0ms);
  will-change: transform, opacity;
}

[data-reveal="fade-up"] {
  transform: translateY(34px);
}

[data-reveal="fade-right"] {
  transform: translateX(-34px);
}

[data-reveal="fade-left"] {
  transform: translateX(34px);
}

[data-reveal="zoom-in"] {
  transform: scale(0.92);
}

[data-reveal].dsab-in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .dsab-about {
    padding: 80px 0 70px;
  }

  .dsab-media {
    margin: 0 auto 60px;
  }

  .dsab-content {
    max-width: none;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .dsab-media {
    padding: 22px 16px 56px 16px;
  }

  .dsab-media__grid {
    height: 340px;
    gap: 12px;
  }

  .dsab-media__stat {
    min-width: auto;
    padding: 14px 18px;
    gap: 12px;
    left: 50px;
  }

  .dsab-media__stat-num {
    font-size: 30px;
  }

  .dsab-checklist {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION SHELL ===== */
.dsft-features {
  padding: 60px 0 30px;
  background: var(--dshdr-white);
}

/* ===== Features SECTION HEAD ===== */
/* ===== GRID ===== */
.dsft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 991.98px) {
  .dsft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .dsft-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARD ===== */
.dsft-card {
  position: relative;
  background: #ee8b300a;
  border: 1px solid #e9eaed;
  border-radius: 10px;
  padding: 38px 28px 32px;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.dsft-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.dsft-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(16, 26, 44, 0.12);
  border-color: transparent;
}
.dsft-card:hover::before {
  transform: scaleX(1);
}

/* ===== FLIP ICON ===== */
.dsft-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  perspective: 1000px;
}
.dsft-icon__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.35, 1);
  transform-style: preserve-3d;
}
.dsft-card:hover .dsft-icon__inner {
  transform: rotateY(180deg);
}
.dsft-icon__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.dsft-icon__face--front {
  background: var(--dshdr-steel-tint);
  color: var(--dshdr-navy);
  border: 1px solid #e1e4e9;
}
.dsft-icon__face--back {
  background: linear-gradient(
    135deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-navy-2) 100%
  );
  color: var(--dshdr-white);
  transform: rotateY(180deg);
}

.dsft-card__num {
  position: absolute;
  top: 30px;
  right: 26px;
  font-weight: 700;
  font-size: 70px;
  letter-spacing: 0.04em;
  font-family: var(--dshdr-font-head);
  line-height: 1;
  width: max-content;
  margin: 0 26px 0 0;
  color: transparent;
  -webkit-text-stroke: 1px rgb(230 130 36 / 27%);
  white-space: nowrap;
}
.dsft-card__title {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: var(--dshdr-ink);
  margin: 0 0 10px;
}
.dsft-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--dshdr-muted);
  margin: 0;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.9, 0.35, 1);
  transition-delay: var(--dshdr-delay, 0ms);
  will-change: transform, opacity;
}
[data-reveal="fade-up"] {
  transform: translateY(34px);
}
[data-reveal="zoom-in"] {
  transform: scale(0.92);
}
[data-reveal].dsft-in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dsft-icon__inner {
    transition: none;
  }
}

/* ===== SECTION SHELL ===== */
.dspr-products {
  position: relative;
  padding: 100px 0;
  background: var(--dshdr-white);
  overflow: hidden;
}
.dspr-corner {
  position: absolute;
  /* width:360px; */
  max-width: 38vw;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.dspr-corner--tl {
  top: 0px;
  left: -70px;
}
.dspr-corner--br {
  bottom: -70px;
  right: -70px;
  transform: rotate(180deg);
}
.dspr-inner {
  position: relative;
  z-index: 1;
}

/* ===== SECTION HEAD (matches dsft-head) ===== */
.dspr-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.dspr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dshdr-steel-tint);
  border: 1px solid #e1e4e9;
  color: var(--dshdr-navy);
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.dspr-badge i {
  color: var(--dshdr-accent);
  font-size: 11px;
}
.dspr-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  color: var(--dshdr-ink);
  margin: 0 0 14px;
}
.dspr-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dshdr-muted);
  margin: 0;
}

/* ===== CARD ===== */
.dspr-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--dshdr-white);
  border: 1px solid #e9eaed;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.dspr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.dspr-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(16, 26, 44, 0.12);
  border-color: transparent;
}
.dspr-card:hover::before {
  transform: scaleX(1);
}

.dspr-card__media {
  position: relative;
  /* height:220px; */
  overflow: hidden;
  background: var(--dshdr-steel-tint);
  background: #7e7e7e;
  padding: 20px;
}
.dspr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.dspr-card:hover .dspr-card__media img {
  transform: scale(1.06);
}
.dspr-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(
    120deg,
    var(--dshdr-navy) 0%,
    var(--dshdr-navy-2) 100%
  );
  color: var(--dshdr-white);
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.dspr-card__body {
  padding: 0px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #7e7e7e;
}
.dspr-card__title {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 8px;
}
.dspr-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  font-weight: 600;
  margin: 0 0 18px;
}

.dspr-specs {
  list-style: none;
  margin: 0 0 22px;
  padding: 8px 0;
  border-top: 1px dashed #e4e5e8;
  border-bottom: 1px dashed #e4e5e8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dspr-specs li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.dspr-specs li strong {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.dspr-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease;
}
.dspr-cta i {
  font-size: 20px;
  color: var(--dshdr-accent);
  transition: transform 0.25s ease;
}
.dspr-cta:hover {
  color:#ffa957;
  border-color: var(--dshdr-accent);
  gap: 12px;
}
.dspr-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 767.98px) {
  .dspr-products {
    padding: 70px 0;
  }
  .dspr-corner {
    width: 220px;
    opacity: 0.35;
  }
}

/* ===== SCROLL REVEAL (same pattern as dsft-features) ===== */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.9, 0.35, 1);
  transition-delay: var(--dshdr-delay, 0ms);
  will-change: transform, opacity;
}
[data-reveal="fade-up"] {
  transform: translateY(34px);
}
[data-reveal="zoom-in"] {
  transform: scale(0.92);
}
[data-reveal].dspr-in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== SECTION SHELL ===== */
.dsmi-section {
  position: relative;
  padding: 110px 0;
  background: var(--dshdr-steel-tint);
  overflow: hidden;
}
.dsmi-hex {
  position: absolute;
  width: 340px;
  max-width: 34vw;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.dsmi-hex--tl {
  top: -40px;
  left: -60px;
}
.dsmi-hex--br {
  bottom: -60px;
  right: -40px;
  transform: rotate(180deg);
}
.dsmi-inner {
  position: relative;
  z-index: 1;
}

/* ===== LEFT: content ===== */
.dsmi-eyebrow {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--dshdr-accent);
  margin: 0 0 18px;
}
.dsmi-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--dshdr-ink);
  margin: 0 0 22px;
}
.dsmi-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dshdr-muted);
  max-width: 460px;
  margin: 0 0 34px;
}

.dsmi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.dsmi-btn {
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 4px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  display: inline-flex;
  align-items: center;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}
.dsmi-btn--fill {
  background: var(--dshdr-navy);
  color: var(--dshdr-white);
  border: 1.5px solid var(--dshdr-navy);
}
.dsmi-btn--fill:hover {
  background: var(--dshdr-navy-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 26, 44, 0.22);
  color: var(--dshdr-white);
}
.dsmi-btn--outline {
  background: transparent;
  color: var(--dshdr-navy);
  border: 1.5px solid var(--dshdr-navy);
}
.dsmi-btn--outline:hover {
  background: var(--dshdr-navy);
  color: var(--dshdr-white);
  transform: translateY(-2px);
}

.dsmi-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.dsmi-stat__num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(32px, 4.8vw, 75px);
  line-height: 1;
  color: var(--dshdr-ink);
  margin: 0 0 6px;
}
.dsmi-stat__num .dsmi-suffix {
  color: var(--dshdr-accent);
}
.dsmi-stat__label {
  font-size: 14px;
  color: var(--dshdr-muted);
  margin: 0;
}

/* ===== RIGHT: image collage ===== */
.dsmi-collage {
  position: relative;
  width: 100%;
  padding-bottom: 108%;
}
.dsmi-collage__item {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 18px 36px rgba(16, 26, 44, 0.14); */
}
.dsmi-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(
    0 0,
    calc(100% - 32px) 0,
    100% 32px,
    100% 100%,
    32px 100%,
    0 calc(100% - 32px)
  );
  display: block;
  width: 100%;
  /* height: auto; */
}
.dsmi-collage__a {
  left: 0%;
  top: 2%;
  width: 47%;
  height: 42%;
}
.dsmi-collage__b {
  left: 0%;
  top: 48%;
  width: 47%;
  height: 42%;
}
.dsmi-collage__c {
  left: 52%;
  top: 15%;
  width: 48%;
  height: 40%;
}
.dsmi-collage__d {
  left: 52%;
  top: 58%;
  width: 48%;
  height: 42%;
}

/* ===== ROTATING SEAL ===== */
.dsmi-seal {
  position: absolute;
  top: -6%;
  left: 50%;
  width: 20%;
  aspect-ratio: 1/1;
  z-index: 3;
}
.dsmi-seal__ring {
  width: 100%;
  height: 100%;
  animation: dsmi-spin 16s linear infinite;
}
.dsmi-seal__ring text {
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.05em;
  fill: var(--dshdr-navy);
  text-transform: uppercase;
}
.dsmi-seal__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: var(--dshdr-white);
  border: 1px solid #e1e4e9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(16, 26, 44, 0.14);
}
.dsmi-seal__center i {
  color: var(--dshdr-navy);
  font-size: 1.3em;
}
@keyframes dsmi-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .dsmi-collage {
    /* margin-top: 56px; */
    padding-bottom: 100%;
  }
  .dsmi-seal {
    width: 22%;
  }
}
@media (max-width: 575.98px) {
  .dsmi-stats {
    gap: 15px;
  }
  .dsmi-seal {
    display: none;
  }
}

/* ===== SECTION SHELL ===== */
.dscta-cta {
  position: relative;
  padding: 110px 0;
  background-image:
    linear-gradient(
      120deg,
      rgba(16, 26, 44, 0.94) 0%,
      rgba(26, 42, 68, 0.88) 45%,
      rgba(16, 26, 44, 0.7) 100%
    ),
    url("../images/10.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* subtle steel texture line, top edge */
.dscta-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 50%,
    var(--dshdr-accent) 100%
  );
}

.dscta-row {
  position: relative;
  z-index: 2;
}

/* ===== LEFT: COPY ===== */
.dscta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--dshdr-white);
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dscta-tag i {
  color: var(--dshdr-accent-2);
  font-size: 10px;
}
.dscta-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.16;
  color: var(--dshdr-white);
  margin: 0 0 16px;
}
.dscta-heading span {
  color: var(--dshdr-accent-2);
}
.dscta-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dshdr-steel);
  max-width: 480px;
  margin: 0;
}

/* ===== RIGHT: ACTION PANEL ===== */
.dscta-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 36px 34px;
}

.dscta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  color: var(--dshdr-white);
  text-decoration: none;
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 20px;
  clip-path: var(--dscta-blade-cut);
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.dscta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(224, 123, 26, 0.35);
  color: var(--dshdr-white);
}

.dscta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--dshdr-font-head);
}
.dscta-divider::before,
.dscta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.dscta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dscta-contact + .dscta-contact {
  margin-top: 16px;
}
.dscta-contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--dshdr-accent-2);
  font-size: 16px;
}
.dscta-contact__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 2px;
}
.dscta-contact__value {
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--dshdr-white);
  margin: 0;
}
.dscta-contact__value a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .dscta-panel {
    /* margin-top: 44px; */
  }
}

/* ===== SECTION SHELL ===== */
.tstm-section {
  position: relative;
  padding: 75px 0px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 90% 10%, #dceafd 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 100%, #fdf3df 0%, transparent 55%),
    var(--tstm-white);
}
.tstm-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#c7d6ea 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  -webkit-mask-image:
    radial-gradient(circle at 8% 15%, rgba(0, 0, 0, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 92% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 45%);
  mask-image:
    radial-gradient(circle at 8% 15%, rgba(0, 0, 0, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 92% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 45%);
  opacity: 0.7;
  z-index: 0;
}

/* ===== CUSTOM GRID LAYOUT (no Bootstrap row/col) ===== */
.tstm-wrap {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  align-items: center;
}

/* ===== LEFT: COPY ===== */
.tstm-left {
  min-width: 0;
}
.tstm-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tstm-primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.tstm-heading {
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--tstm-ink);
  margin: 0 0 18px;
}
.tstm-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tstm-muted);
  max-width: 460px;
  margin: 0 0 34px;
}
.tstm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dshdr-navy);
  color: var(--tstm-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 50px;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.tstm-btn:hover {
  background: #ec8a2e;
  color: var(--tstm-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 124, 234, 0.28);
}

/* ===== RIGHT: VERTICAL SWIPER ===== */
.tstm-right {
  min-width: 0;
}
.tstm-carousel {
  display: flex;
  align-items: center;
  gap: 22px;
}
.tstm-nav {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tstm-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--tstm-border);
  background: var(--tstm-white);
  color: var(--tstm-primary);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.tstm-nav__btn:hover {
  background: var(--tstm-primary);
  color: var(--tstm-white);
  transform: translateY(-2px);
}
.tstm-swiper {
  flex: 1;
  min-width: 0;
  height: 600px;
  padding: 2px 4px 2px 40px;
}
.tstm-swiper .swiper-wrapper {
  /* allow shadow/border of active slide to render without vertical clipping artifacts */
}
.tstm-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--tstm-white);
  border-left: 5px solid transparent;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(16, 26, 44, 0.07);
  padding: 22px 24px;
  height: 170px;
  transition:
    transform 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease;
  opacity: 0.7;
}
.swiper-slide-active .tstm-card {
  border-left-color: var(--tstm-primary);
  box-shadow: 0 18px 36px rgba(7, 124, 234, 0.14);
  transform: translateX(-24px);
  opacity: 1;
}
.tstm-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.tstm-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tstm-card__name {
  font-weight: 700;
  font-size: 18px;
  color: var(--tstm-ink);
  margin: 0 0 8px;
}
.tstm-card__quote {
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.7;
  color: var(--tstm-muted);
  margin: 0;
}
.tstm-card__mark {
  flex-shrink: 0;
  color: var(--tstm-primary-light);
  font-size: 28px;
  line-height: 1;
}
.swiper-slide-active .tstm-card__mark {
  color: var(--tstm-primary);
}

@media (max-width: 991.98px) {
  .tstm-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .swiper-slide-active .tstm-card {
    transform: translateX(-14px);
  }
}
@media (max-width: 575.98px) {
  .tstm-section {
    padding: 80px 0px;
  }
  .tstm-swiper {
    height: 640px;
    padding: 2px 4px 2px 15px;
  }

  .tstm-nav {
    display: none;
  }

  .tstm-card {
    height: auto;
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .tstm-card__mark {
    display: none;
  }
}

/* ===== SECTION SHELL ===== */
.dsfaq-section {
  position: relative;
  padding: 75px 0px;
  background: var(--dshdr-navy-deep);
  overflow: hidden;
}
.dsfaq-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(203, 203, 209, 0.35) 1.4px,
    transparent 1.4px
  );
  background-size: 16px 16px;
  -webkit-mask-image:
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  mask-image:
    radial-gradient(circle at 10% 20%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 90% 85%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  z-index: 0;
}
.dsfaq-glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(224, 123, 26, 0.22) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* ===== CUSTOM GRID LAYOUT ===== */
.dsfaq-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}

/* ===== LEFT: COPY + STATS + CTA ===== */
.dsfaq-left {
  min-width: 0;
  position: sticky;
  top: 40px;
}
.dsfaq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--dshdr-steel);
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.dsfaq-tag i {
  color: var(--dshdr-accent);
  font-size: 11px;
}
.dsfaq-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  color: var(--dshdr-white);
  margin: 0 0 16px;
}
.dsfaq-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dshdr-steel);
  max-width: 440px;
  margin: 0 0 36px;
}
.dsfaq-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 440px;
}
.dsfaq-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 18px 20px;
}
.dsfaq-stat__num {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--dshdr-accent-2);
  margin: 0 0 4px;
}
.dsfaq-stat__label {
  font-size: 13px;
  color: var(--dshdr-steel);
  margin: 0;
}
.dsfaq-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(
    135deg,
    rgba(224, 123, 26, 0.14),
    rgba(224, 123, 26, 0.03)
  );
  border: 1px solid rgba(224, 123, 26, 0.3);
  border-radius: 12px;
  padding: 20px 22px;
  max-width: 440px;
}
.dsfaq-cta__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-white);
  font-size: 18px;
}
.dsfaq-cta__title {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--dshdr-white);
  margin: 0 0 2px;
}
.dsfaq-cta__link {
  font-size: 14px;
  color: var(--dshdr-accent-2);
  text-decoration: none;
  font-weight: 600;
}
.dsfaq-cta__link:hover {
  color: var(--dshdr-white);
}

/* ===== RIGHT: ACCORDION ===== */
.dsfaq-right {
  min-width: 0;
}
.dsfaq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.dsfaq-item:has(.dsfaq-item__btn:not(.collapsed)) {
  border-color: rgba(224, 123, 26, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.dsfaq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
}
.dsfaq-item__num {
  flex-shrink: 0;
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--dshdr-steel-dark);
  width: 30px;
}
.dsfaq-item__btn:not(.collapsed) .dsfaq-item__num {
  color: var(--dshdr-accent-2);
}
.dsfaq-item__q {
  flex: 1;
  min-width: 0;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--dshdr-white);
}
.dsfaq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-steel);
  transition:
    transform 0.35s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.dsfaq-item__btn:not(.collapsed) .dsfaq-item__icon {
  transform: rotate(135deg);
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  border-color: transparent;
  color: var(--dshdr-white);
}
.dsfaq-item__body {
  padding: 0 24px 24px 72px;
}
.dsfaq-item__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dshdr-steel);
  max-width: 560px;
}

@media (max-width: 991.98px) {
  .dsfaq-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .dsfaq-left {
    position: static;
  }
}
@media (max-width: 575.98px) {
  .dsfaq-section {
    padding: 80px 0px;
  }
  .dsfaq-stats {
    grid-template-columns: 1fr;
  }
  .dsfaq-item__body {
    padding: 0 20px 22px 20px;
  }
}

/* ===== SECTION SHELL ===== */
.dscta-section {
  position: relative;
  padding: 75px 0;
  background:
    linear-gradient(
      135deg,
      rgb(16 26 44 / 33%) 0%,
      rgb(16 26 44 / 23%) 45%,
      rgb(16 26 44 / 0%) 100%
    ),
    url(../images/parallax.jpg) center / cover no-repeat;
}
.dscta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(203, 203, 209, 0.35) 1.4px,
    transparent 1.4px
  );
  background-size: 16px 16px;
  -webkit-mask-image:
    radial-gradient(circle at 8% 15%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 92% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  mask-image:
    radial-gradient(circle at 8% 15%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 92% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0.5;
  z-index: 0;
}
.dscta-glow {
  position: absolute;
  bottom: -200px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(224, 123, 26, 0.2) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* ===== CUSTOM GRID LAYOUT ===== */
.dscta-wrap {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: stretch;
}

/* ===== LEFT: COPY + CONTACT DETAILS + MAP ===== */
.dscta-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.dscta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
.dscta-tag i {
  color: var(--dshdr-accent);
  font-size: 11px;
}
.dscta-heading {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  color: var(--dshdr-white);
  margin: 0 0 16px;
}
.dscta-text {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  max-width: 440px;
  margin: 0 0 32px;
}

.dscta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.dscta-info__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.dscta-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-accent-2);
  font-size: 16px;
}
.dscta-info__label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 3px;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
}
.dscta-info__value {
  font-size: 15px;
  color: #fff;
  margin: 0;
}
.dscta-info__value a {
  color: inherit;
  text-decoration: none;
}
.dscta-info__value a:hover {
  color: var(--dshdr-accent-2);
}

.dscta-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 200px;
  margin-top: auto;
}
.dscta-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
  display: block;
}

/* ===== RIGHT: FORM CARD ===== */
.dscta-right {
  min-width: 0;
}
.dscta-card {
  background: var(--dshdr-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.dscta-card__title {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--dshdr-ink);
  margin: 0 0 6px;
}
.dscta-card__sub {
  font-size: 14.5px;
  color: var(--dshdr-muted);
  margin: 0 0 28px;
}

.dscta-field {
  margin-bottom: 20px;
}
.dscta-field label {
  display: block;
  font-family: var(--dshdr-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--dshdr-muted);
  margin-bottom: 8px;
}
.dscta-field .form-control,
.dscta-field .form-select {
  border: 1px solid #dfe2e8;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--dshdr-font-body);
  color: var(--dshdr-ink);
  background: var(--dshdr-steel-tint);
  box-shadow: none;
}
.dscta-field .form-control:focus,
.dscta-field .form-select:focus {
  border-color: var(--dshdr-accent);
  background: var(--dshdr-white);
  box-shadow: 0 0 0 3px rgba(224, 123, 26, 0.15);
}
.dscta-field textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.dscta-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dscta-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  color: var(--dshdr-white);
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 26px;
  clip-path: var(--dscta-blade-cut);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  margin-top: 6px;
}
.dscta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(224, 123, 26, 0.28);
}

@media (max-width: 991.98px) {
  .dscta-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .dscta-map {
    height: 220px;
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .dscta-section {
    padding: 80px 0px;
  }
  .dscta-card {
    padding: 28px 22px;
  }
  .dscta-row2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== FOOTER SHELL ===== */
.dsftr {
  position: relative;
  background: var(--dshdr-navy-deep);
  padding-top: 64px;
  overflow: hidden;
}
.dsftr-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(203, 203, 209, 0.28) 1.4px,
    transparent 1.4px
  );
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(
    circle at 85% 15%,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 45%
  );
  mask-image: radial-gradient(
    circle at 85% 15%,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 45%
  );
  z-index: 0;
}
.dsftr-glow {
  position: absolute;
  top: 0;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(224, 123, 26, 0.14) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* ===== STEEL-SEAM DIVIDER (SVG at the very top edge) ===== */
.dsftr-seam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  transform: translateY(-1px);
}
.dsftr-seam svg {
  display: block;
  width: 100%;
  height: 14px;
}

.dsftr-inner {
  position: relative;
  z-index: 2;
  /* max-width:1280px;
    margin:0 auto; */
  /* padding:0 24px; */
}

/* ===== FLOATING QUOTE CTA (overlaps section above) ===== */
.dsftr-cta {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 55px auto 0;
  padding: 0 24px;
  transform: translateY(-50%);
}
.dsftr-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  border-radius: 14px;
  padding: 34px 44px;
  box-shadow: 0 24px 50px rgba(224, 123, 26, 0.28);
}
.dsftr-cta__text {
  min-width: 0;
}
.dsftr-cta__title {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--dshdr-white);
  margin: 0 0 4px;
}
.dsftr-cta__sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.dsftr-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dshdr-navy-deep);
  color: var(--dshdr-white);
  text-decoration: none;
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  clip-path: var(--dsftr-blade-cut);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.dsftr-cta__btn:hover {
  background: #000;
  color: var(--dshdr-white);
  transform: translateY(-2px);
}

/* ===== TOP GRID ===== */
.dsftr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(
      0,
      1.2fr
    );
  gap: 48px;
  padding-top: 8px;
  padding-bottom: 56px;
}

/* --- brand column --- */
.dsftr-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.dsftr-brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-white);
  font-size: 16px;
}
.dsftr-brand__name {
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--dshdr-white);
  letter-spacing: 0.02em;
  margin: 0;
}
.dsftr-brand__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--dshdr-steel);
  max-width: 320px;
  margin: 0 0 22px;
}

.dsftr-newsletter {
  display: flex;
  align-items: stretch;
  max-width: 320px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.dsftr-newsletter input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: var(--dshdr-font-body);
  color: var(--dshdr-white);
}
.dsftr-newsletter input::placeholder {
  color: var(--dshdr-steel-dark);
}
.dsftr-newsletter button {
  flex-shrink: 0;
  border: none;
  padding: 0 18px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  color: var(--dshdr-white);
  font-size: 14px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.dsftr-newsletter button:hover {
  filter: brightness(1.08);
}

.dsftr-social {
  display: flex;
  gap: 10px;
}
.dsftr-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-steel);
  text-decoration: none;
  font-size: 14px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.dsftr-social a:hover {
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  border-color: transparent;
  color: var(--dshdr-white);
  transform: translateY(-3px);
}

/* --- link columns --- */
.dsftr-col__title {
  position: relative;
  font-family: var(--dshdr-font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dshdr-white);
  margin: 0 0 26px;
  padding-bottom: 14px;
}
.dsftr-col__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
}
.dsftr-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.dsftr-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dshdr-steel);
  text-decoration: none;
  font-size: 14.5px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.dsftr-links a i {
  font-size: 10px;
  color: var(--dshdr-accent-2);
  transition: transform 0.2s ease;
}
.dsftr-links a:hover {
  color: var(--dshdr-white);
  gap: 12px;
}

/* --- contact column --- */
.dsftr-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dsftr-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dsftr-contact__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dshdr-accent-2);
  font-size: 14px;
}
.dsftr-contact span {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dshdr-steel);
}
.dsftr-contact a {
  color: inherit;
  text-decoration: none;
}
.dsftr-contact a:hover {
  color: var(--dshdr-white);
}

/* ===== BOTTOM BAR ===== */
.dsftr-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}
.dsftr-bottom p {
  margin: 0;
  font-size: 13.5px;
  color: var(--dshdr-steel-dark);
}
.dsftr-bottom__links {
  display: flex;
  gap: 22px;
}
.dsftr-bottom__links a {
  font-size: 13.5px;
  color: var(--dshdr-steel-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dsftr-bottom__links a:hover {
  color: var(--dshdr-accent-2);
}

/* ===== BACK TO TOP ===== */
.dsftr-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(
    120deg,
    var(--dshdr-accent) 0%,
    var(--dshdr-accent-2) 100%
  );
  color: var(--dshdr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(224, 123, 26, 0.35);
  z-index: 20;
  transition: transform 0.25s ease;
}
.dsftr-top:hover {
  transform: translateY(-3px);
  color: var(--dshdr-white);
}

@media (max-width: 991.98px) {
  .dsftr-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .dsftr-cta__inner {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .dsftr {
    padding-top: 48px;
  }
  .dsftr-cta__inner {
    padding: 26px 24px;
  }
  .dsftr-cta {
    margin: 104px auto -60px;
  }
  .dsftr-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dsftr-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}
.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}
/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}
.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}
@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}
.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}
@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}
.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}
.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}
@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  45% {
    transform: translateY(-6px);
    opacity: 0;
  }
  46% {
    transform: translateY(6px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }
  .gtt-float {
    right: 16px;
    bottom: 20px;
  }
  .wa-circle {
    width: 52px;
    height: 52px;
  }
  .wa-circle i {
    font-size: 1.35rem;
  }
}
