/* ============================================================
       DTI HEADER — Prefix: dti__
       Brand Palette:
         --dti-red    : #D42B2B  (logo red)
         --dti-orange : #FF6A00  (swoosh start)
         --dti-amber  : #FF9900  (swoosh end)
         --dti-navy   : #1A1F8C  (brand name text)
         --dti-dark   : #111214  (topbar bg)
         --dti-white  : #FFFFFF
    ============================================================ */

:root {
  --dti-red: #d42b2b;
  --dti-orange: #ff6a00;
  --dti-amber: #ff9900;
  --dti-navy: #1a1f8c;
  --dti-dark: #111214;
  --dti-white: #ffffff;
  --dti-gray: #f5f5f5;
  --dti-border: rgba(255, 255, 255, 0.1);
  --dti-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --dta-red: #d42b2b;
  --dta-orange: #ff6a00;
  --dta-amber: #ff9900;
  --dta-dark: #f4f5f7;
  --dta-panel: #ffffff;
  --dta-panel2: #f0f1f4;
  --dta-stroke: rgba(0, 0, 0, 0.08);
  --dta-text: #4b5563;
  --dta-head: #1a1a2e;
  --dta-tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --dti-panel: #16181b;
  --dti-base: #0d0e10;
  --dti-white: #ffffff;
  --dti-tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-h: "Barlow Condensed", sans-serif;
  --font-b: "Barlow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.dti__topbar {
  background: var(--dti-dark);
  border-bottom: 2px solid var(--dti-red);
  padding: 7px 0;
}

.dti__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.dti__topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.dti__topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--dti-transition);
}

.dti__topbar-item:hover {
  color: var(--dti-amber);
}

.dti__topbar-item i {
  color: var(--dti-orange);
  font-size: 12px;
  flex-shrink: 0;
}

.dti__topbar-divider {
  width: 1px;
  height: 14px;
  background: var(--dti-border);
}

.dti__topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dti__social-link {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dti-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  text-decoration: none;
  transition: all var(--dti-transition);
}

.dti__social-link:hover {
  background: var(--dti-red);
  border-color: var(--dti-red);
  color: #fff;
}

/* ── HEADER ─────────────────────────────────────────────── */
.dti__header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 5px 0;
}

.dti__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 76px;
}

/* ── LOGO ── */
.dti__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.dti__logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* ── NAV ── */
.dti__nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  height: 100%;
  margin: 0;
}

.dti__nav > li {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
}

.dti__nav > li > a {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color var(--dti-transition);
}

.dti__nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--dti-red), var(--dti-orange));
  transition:
    left var(--dti-transition),
    right var(--dti-transition);
  border-radius: 2px 2px 0 0;
}

.dti__nav > li:hover > a,
.dti__nav > li.dti__active > a {
  color: var(--dti-red);
}

.dti__nav > li:hover > a::after,
.dti__nav > li.dti__active > a::after {
  left: 12px;
  right: 12px;
}

.dti__nav > li > a .dti__chevron {
  font-size: 10px;
  transition: transform var(--dti-transition);
}

.dti__nav > li:hover > a .dti__chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN L1 ── */
.dti__dropdown {
  position: absolute;
  top: 76px;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-top: 3px solid var(--dti-red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--dti-transition),
    transform var(--dti-transition),
    visibility var(--dti-transition);
  z-index: 999;
}

.dti__nav > li:hover > .dti__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dti__dropdown > li {
  position: relative;
}

.dti__dropdown > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #2a2a3e;
  text-decoration: none;
  transition:
    background var(--dti-transition),
    color var(--dti-transition),
    padding-left var(--dti-transition);
  border-left: 3px solid transparent;
}

.dti__dropdown > li > a i.dti__icon-left {
  color: var(--dti-orange);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}

.dti__dropdown > li > a span {
  flex: 1;
}

.dti__dropdown > li > a i.dti__icon-right {
  color: #aaa;
  font-size: 11px;
  flex-shrink: 0;
}

.dti__dropdown > li:hover > a {
  background: #fff5f0;
  color: var(--dti-red);
  padding-left: 22px;
  border-left-color: var(--dti-orange);
}

.dti__dropdown > li:hover > a i {
  color: var(--dti-red);
}

/* ── DROPDOWN L2 ── */
.dti__dropdown-l2 {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  background: #fff;
  border-top: 3px solid var(--dti-orange);
  border-radius: 0 8px 8px 8px;
  box-shadow: 8px 12px 40px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity var(--dti-transition),
    transform var(--dti-transition),
    visibility var(--dti-transition);
  z-index: 998;
}

.dti__dropdown > li:hover > .dti__dropdown-l2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dti__dropdown-l2 > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #2a2a3e;
  text-decoration: none;
  transition:
    background var(--dti-transition),
    color var(--dti-transition);
  border-left: 3px solid transparent;
}

.dti__dropdown-l2 > li > a i {
  color: var(--dti-amber);
  font-size: 12px;
  width: 15px;
}

.dti__dropdown-l2 > li:hover > a {
  background: #fff9f0;
  color: var(--dti-orange);
  border-left-color: var(--dti-amber);
}

/* ── CTA BUTTON ── */
.dti__cta-btn {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--dti-red) 0%,
    var(--dti-orange) 100%
  );
  border: none;
  padding: 11px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dti-transition);
  box-shadow: 0 4px 14px rgba(212, 43, 43, 0.3);
  flex-shrink: 0;
}

.dti__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 43, 43, 0.38);
  color: #fff;
}

/* ── HAMBURGER ── */
.dti__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid rgba(212, 43, 43, 0.35);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: border-color var(--dti-transition);
}

.dti__hamburger:hover {
  border-color: var(--dti-red);
}

.dti__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dti-red);
  border-radius: 2px;
  transition: all var(--dti-transition);
}

.dti__hamburger.dti__open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dti__hamburger.dti__open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.dti__hamburger.dti__open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.dti__drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dti__drawer-overlay.dti__show {
  display: block;
  opacity: 1;
}

.dti__drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1100;
  overflow-y: auto;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.dti__drawer.dti__open {
  right: 0;
}

.dti__drawer-head {
  background: var(--dti-dark);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--dti-red);
  flex-shrink: 0;
}

.dti__drawer-head img {
  height: 44px;
  filter: brightness(0) invert(1);
}

.dti__drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dti-transition);
}

.dti__drawer-close:hover {
  background: var(--dti-red);
}

.dti__drawer-nav {
  list-style: none;
  padding: 10px 0;
  flex: 1;
}

.dti__drawer-nav > li {
  border-bottom: 1px solid #f0f0f0;
}

.dti__drawer-nav > li > a,
.dti__drawer-nav > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a2e;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  transition:
    color var(--dti-transition),
    background var(--dti-transition);
}

.dti__drawer-nav > li > a i,
.dti__drawer-nav > li > button i {
  color: var(--dti-orange);
}

.dti__drawer-nav > li > a:hover,
.dti__drawer-nav > li > button:hover {
  color: var(--dti-red);
  background: #fff5f0;
}

.dti__drawer-chevron {
  font-size: 11px;
  color: #aaa !important;
  transition: transform var(--dti-transition);
}

.dti__drawer-chevron.dti__rotated {
  transform: rotate(90deg);
}

/* Mobile accordion sub-menus */
.dti__mob-sub {
  display: none;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.dti__mob-sub.dti__open {
  display: block;
  list-style: none;
  padding: 0;
}

.dti__mob-sub > li {
  border-bottom: 1px solid #efefef;
}

.dti__mob-sub > li > a,
.dti__mob-sub > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3a3a5e;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  transition:
    color var(--dti-transition),
    background var(--dti-transition);
}

.dti__mob-sub > li > a:hover,
.dti__mob-sub > li > button:hover {
  color: var(--dti-red);
  background: #fff5f0;
}

.dti__mob-sub > li > a i,
.dti__mob-sub > li > button i {
  color: var(--dti-orange);
  margin-right: 6px;
}

/* Level 2 mobile sub */
.dti__mob-sub2 {
  display: none;
  background: #f4f4f4;
}

.dti__mob-sub2.dti__open {
  display: block;
  list-style: none;
  padding: 0;
}

.dti__mob-sub2 > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 44px;
  font-size: 12.5px;
  color: #555;
  text-decoration: none;
  transition: color var(--dti-transition);
  border: none;
}

.dti__mob-sub2 > li > a i {
  color: var(--dti-amber);
  font-size: 11px;
}

.dti__mob-sub2 > li > a:hover {
  color: var(--dti-orange);
}

.dti__drawer-footer {
  padding: 16px 18px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.dti__drawer-footer .dti__cta-btn {
  width: 100%;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .dti__nav-wrap {
    display: none;
  }

  .dti__cta-btn.dti__desk-only {
    display: none;
  }

  .dti__hamburger {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .dti__topbar-item.dti__hide-xs {
    display: none;
  }

  .dti__topbar-social {
    display: none;
  }

  .dti__topbar-divider.dti__hide-xs {
    display: none;
  }
}

/* ── SECTION ── */
.dta__section {
  background: var(--dta-dark);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Blueprint-style dot grid background */
.dta__section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.22) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.3;
}

/* Large red glow top-right */
.dta__section::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 43, 43, 0.07) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* Bottom-left glow */
.dta__bg-glow2 {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 106, 0, 0.06) 0%,
    transparent 68%
  );
  pointer-events: none;
}

/* ── EYEBROW ── */
.dta__eyebrow {
  display: block;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dta-orange);
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );

  max-width: 175px;
  width: 100%;
  margin: 18px auto;
}

/* ── MAIN HEADING ── */
.dta__heading {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--dta-head);
  margin-bottom: 0;
  text-align: center;
}

.dta__heading .dta__accent {
  background: linear-gradient(90deg, var(--dta-red), var(--dta-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HEADING BAR (same structural role as reference) ── */
.dta__heading-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
  text-align: center;
  max-width: 700px;
  margin: 20px auto;
}

.dta__heading-bar .dta__bar-solid {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--dta-red), var(--dta-orange));
  border-radius: 4px;
  position: relative;
}

.dta__heading-bar .dta__bar-dot {
  width: 8px;
  height: 8px;
  background: var(--dta-amber);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.dta__heading-bar .dta__bar-thin {
  flex: 1;
  height: 1px;
  background: var(--dta-stroke);
}

/* ── FLOAT IMAGE ZONE (same layout role as reference) ── */
.dta__float-img {
  float: left;
  margin: 4px 10px 0px 0;
  position: relative;
}

.dta__float-img:nth-child(2) {
  margin-top: 10px;
}

.dta__float-img .dta__img-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  /* Industrial angled corner cut */
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}

.dta__float-img .dta__img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 43, 43, 0.18) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.dta__float-img .dta__img-frame img {
  display: block;
  width: 400px;
  height: 275px;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: saturate(0.85) brightness(0.9);
}

.dta__float-img:hover .dta__img-frame img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.95);
  border-radius: 24px;
}

/* Corner accent lines (top-right + bottom-left) */
.dta__float-img .dta__corner-tr,
.dta__float-img .dta__corner-bl {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}

.dta__float-img .dta__corner-tr {
  top: -1px;
  right: -1px;
  border-top: 3px solid var(--dta-orange);
  border-right: 3px solid var(--dta-orange);
}

.dta__float-img .dta__corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid var(--dta-orange);
  border-left: 3px solid var(--dta-orange);
}

/* Image label overlay */
.dta__img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(14, 15, 19, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.dta__img-label i {
  color: var(--dta-amber);
  font-size: 0.6rem;
}

/* ── BODY TEXT ── */
.dta__body-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--dta-text);
}

.dta__body-text p {
  margin-bottom: 16px;
}
.dta__body-text p:last-child {
  margin-bottom: 0;
}

.dta__body-text strong {
  color: #1a1a2e;
  font-weight: 600;
}

.dta__clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ── STAT STRIP ── */
.dta__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  background: var(--dta-panel);
  border: 1px solid var(--dta-stroke);
  position: relative;
  overflow: hidden;
  /* Diagonal top edge */
  clip-path: polygon(
    0 12px,
    12px 0,
    100% 0,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0 100%
  );
}

.dta__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dta-red),
    var(--dta-orange),
    var(--dta-amber)
  );
}

.dta__stat-item {
  padding: 36px 20px;
  text-align: center;
  position: relative;
  transition: background var(--dta-tr);
}

.dta__stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--dta-stroke);
}

.dta__stat-item:hover {
  background: var(--dta-panel2);
}

.dta__stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dta-orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.dta__stat-num {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.dta__stat-num span {
  background: linear-gradient(90deg, var(--dta-red), var(--dta-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.72em;
}

.dta__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

/* ── VALUE CARDS ── */
.dta__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.dta__value-card {
  background: var(--dta-panel);
  border: 1px solid var(--dta-stroke);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dta-tr),
    transform var(--dta-tr);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

.dta__value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dta-red), var(--dta-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dta-tr);
}

.dta__value-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-3px);
}

.dta__value-card:hover::before {
  transform: scaleX(1);
}

.dta__value-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(212, 43, 43, 0.12);
  border: 1px solid rgba(212, 43, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dta-red);
  border-radius: 4px;
  transition:
    background var(--dta-tr),
    color var(--dta-tr);
}

.dta__value-card:hover .dta__value-icon {
  background: rgba(255, 106, 0, 0.18);
  border-color: rgba(255, 106, 0, 0.4);
  color: var(--dta-orange);
}

.dta__value-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a2e;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dta__value-text {
  font-size: 0.83rem;
  line-height: 1.7;
  color: #6b7280;
}

/* ── CTA ROW ── */
.dta__cta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dta__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--dta-red), var(--dta-orange));
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: none;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  box-shadow: 0 6px 24px rgba(212, 43, 43, 0.35);
  transition:
    box-shadow var(--dta-tr),
    transform var(--dta-tr),
    filter var(--dta-tr);
}

.dta__btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 10px 32px rgba(212, 43, 43, 0.5);
}

.dta__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #1a1a2e;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid rgba(26, 26, 46, 0.25);
  text-decoration: none;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  transition:
    border-color var(--dta-tr),
    background var(--dta-tr),
    color var(--dta-tr);
}

.dta__btn-outline:hover {
  border-color: var(--dta-orange);
  background: rgba(255, 106, 0, 0.08);
  color: var(--dta-orange);
}

/* ── COUNTER ANIMATION ── */
.dta__stat-num[data-target] {
  transition: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .dta__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dta__stat-item:nth-child(2)::after {
    display: none;
  }
  .dta__values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .dta__section {
    padding: 60px 0;
  }

  .dta__float-img {
    float: none;
    margin: 0 0 24px 0;
  }

  .dta__float-img .dta__img-frame img {
    width: 100%;
    height: 220px;
  }

  .dta__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dta__stat-item::after {
    display: none !important;
  }
  .dta__values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479.98px) {
  .dta__stat-num {
    font-size: 1.9rem;
  }
}

/* ── SECTION ── */
#products {
  position: relative;
  padding: 40px 0;
  background:
    linear-gradient(rgb(255 255 255 / 68%), rgb(255 255 255 / 59%)),
    url(https://axessoftware.com/wp-content/uploads/2022/12/Organizarea-interna-a-depozitelor-1-Axes-Software-2048x1365.jpg-1800x1200.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--dti-red) 30%,
    var(--dti-orange) 70%,
    transparent
  );
}

/* ── SECTION HEADER ── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dti-red);
  margin-bottom: 14px;
}

.sec-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dti-red);
  animation: blink 1.8s ease-in-out infinite alternate;
}

@keyframes blink {
  from {
    opacity: 0.2;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sec-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--dta-head);
  margin-bottom: 0;
}

.sec-title .dk {
  color: #000;
}

.sec-title .bl {
  background: linear-gradient(90deg, var(--dti-red), var(--dti-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 0.94rem;
  color: #000000;
  max-width: 500px;
  line-height: 1.75;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dti-red);
  text-decoration: none;
  border: 1.5px solid rgba(212, 43, 43, 0.35);
  padding: 9px 20px;
  border-radius: 25px;
  transition:
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
  align-self: flex-end;
}

.sec-view-all:hover {
  background: var(--dti-red);
  color: #fff;
  border-color: var(--dti-red);
}

/* ── PRODUCT CARD ── */
.prod-card {
  background: var(--dti-white);
  border: 1.5px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(26, 31, 140, 0.12);
  border-color: rgba(212, 43, 43, 0.32);
}

/* image */
.prod-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.prod-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.prod-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.prod-card:hover .prod-img-link img {
  transform: scale(1.07);
}

/* image overlay + hover cta */
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 31, 140, 0.52) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
}

.prod-card:hover .prod-img-overlay {
  opacity: 1;
}

.prod-hover-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: var(--dti-white);
  color: var(--dti-orange);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 25px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 2;
}

.prod-card:hover .prod-hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

.prod-badge.pop {
  background: rgba(212, 43, 43, 0.08);
  color: var(--dti-orange);
  border: 1px solid rgba(212, 43, 43, 0.3);
}

.prod-badge.new {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #86efac;
}

.prod-badge.hot {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.prod-badge.trend {
  background: #f3e8ff;
  color: #7c3aed;
  border: 1px solid #c4b5fd;
}

/* card body */
.prod-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.prod-cat {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dti-red);
  display: flex;
  align-items: center;
  gap: 5px;
}

.prod-cat i {
  font-size: 0.6rem;
}

/* MANDATORY TITLE ANCHOR */
.prod-title-link {
  text-decoration: none;
  display: block;
}

.prod-title {
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dti-navy);
  line-height: 1.1;
  transition: color 0.25s;
}

.prod-title-link:hover .prod-title {
  color: var(--dti-red);
}

.prod-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.68;
}

/* spec pills */
.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.prod-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  color: #6b7280;
  background: var(--dti-gray);
  border: 1px solid #e5e5e5;
  padding: 3px 9px;
  border-radius: 10px;
  transition:
    background 0.25s,
    color 0.25s;
}

.prod-spec i {
  color: var(--dti-red);
  font-size: 0.58rem;
}

.prod-card:hover .prod-spec {
  background: rgba(212, 43, 43, 0.08);
  color: var(--dti-orange);
}

/* CTA row */
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
  gap: 10px;
}

.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dti-red);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}

.prod-link:hover {
  gap: 10px;
  color: var(--dti-orange);
}

.prod-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dti-red), var(--dti-orange));
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(212, 43, 43, 0.3);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}

.prod-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 43, 43, 0.5);
  color: #fff;
}

/* ── DIVIDER ── */
.sec-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 48px 0 0px;
}

.sec-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(135deg, var(--dti-red), var(--dti-orange));
}

.sec-divider-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 43, 43, 0.08);
  border: 1.5px solid rgba(212, 43, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--dti-red);
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #fff 0%, var(--dti-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Background Accent Elements */
.why-choose-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 152, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.why-choose-container {
  position: relative;
  z-index: 1;
}

/* Section Title */
.why-choose-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-choose-title {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--dti-navy);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: var(--font-h);
}

.why-choose-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--dti-red) 0%, var(--dti-orange) 100%);
  border-radius: 2px;
}

.why-choose-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Why Choose Card */
.why-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(220, 20, 60, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dti-red) 0%, var(--dti-orange) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 152, 0, 0.3);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Why Card Icon */
.why-card-icon {
  font-size: 48px;
  color: var(--dti-red);
  margin-bottom: 20px;
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.1) 0%,
    rgba(255, 152, 0, 0.1) 100%
  );
  border-radius: 50%;
  transition: all 0.4s;
}

.why-card:hover .why-card-icon {
  background: linear-gradient(
    135deg,
    var(--dti-red) 0%,
    var(--dti-orange) 100%
  );
  color: #fff;
  transform: scale(1.1) rotate(360deg);
}

/* Why Card Title */
.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dti-navy);
  margin-bottom: 12px;
  transition: color 0.4s;
}

.why-card:hover .why-card-title {
  color: var(--dti-red);
}

/* Why Card Description */
.why-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  transition: color 0.4s;
}

.why-card:hover .why-card-desc {
  color: #555;
}

/* Why Choose Image Section */
.why-image-section {
  position: relative;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(220, 20, 60, 0.2);
}

.why-image-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dti-navy);
  margin-bottom: 10px;
  text-align: center;
}

.why-image-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.why-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Image Card */
.why-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.why-image-card:hover {
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
  transform: translateY(-8px);
}

.why-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-image-card:hover img {
  transform: scale(1.1);
}

/* Image Overlay */
.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.8) 0%,
    rgba(255, 152, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 10;
}

.why-image-card:hover .why-image-overlay {
  opacity: 1;
}

.why-image-label {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.why-image-label i {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}

/* Stats Section */
.why-stats-section {
  background: linear-gradient(135deg, var(--dti-navy) 0%, var(--dti-dark) 100%);
  padding: 50px 30px;
  border-radius: 12px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.why-stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 152, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-stat-item {
  text-align: center;
  padding: 20px;
}

.why-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--dti-orange);
  margin-bottom: 10px;
  display: block;
}

.why-stat-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-title {
    font-size: 36px;
  }

  .why-choose-grid {
    gap: 30px;
  }

  .why-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-header {
    margin-bottom: 50px;
  }

  .why-choose-title {
    font-size: 28px;
  }

  .why-choose-subtitle {
    font-size: 14px;
  }

  .why-choose-grid {
    gap: 25px;
  }

  .why-card {
    padding: 30px 20px;
  }

  .why-card-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
  }

  .why-card-title {
    font-size: 16px;
  }

  .why-card-desc {
    font-size: 12px;
  }

  .why-image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .why-image-card {
    height: 240px;
  }

  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-stat-number {
    font-size: 36px;
  }

  .why-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-title {
    font-size: 24px;
  }

  .why-choose-header {
    margin-bottom: 40px;
  }

  .why-choose-grid {
    gap: 20px;
  }

  .why-card {
    padding: 25px 15px;
  }

  .why-card-icon {
    font-size: 36px;
    width: 65px;
    height: 65px;
  }

  .why-image-grid {
    grid-template-columns: 1fr;
  }

  .why-image-card {
    height: 220px;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
  }

  .why-stats-section {
    padding: 40px 20px;
  }
}

/* ==================== ANIMATIONS ==================== */

/* SECTION */
.ts {
  display: flex;
  /* min-height: 100vh; */
  overflow: hidden;
}

/* LEFT HALF */
.ts-left {
  width: 35%;
  position: relative;
  overflow: hidden;
}

.ts-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: imgZoom 8s ease-in-out infinite alternate;
}

@keyframes imgZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.ts-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 58, 147, 0.72) 0%,
    rgba(220, 20, 60, 0.45) 100%
  );
}

.ts-left-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  text-align: center;
}

.ts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.ts-big {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.ts-big span {
  color: #ff9800;
}

.ts-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff9800, #dc143c);
  border-radius: 2px;
  margin: 24px auto;
  animation: fadeUp 0.8s 0.3s ease both;
}

.ts-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 280px;
  animation: fadeUp 0.8s 0.45s ease both;
}

/* stats row */
.ts-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.ts-stat {
  text-align: center;
}

.ts-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ts-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.ts-stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* RIGHT HALF */
.ts-right {
  width: 65%;
  background: #e03c2029;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

/* big faint quote bg */
.ts-qbg {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 260px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #dc143c;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* CAROUSEL */
.ts-overflow {
  overflow: hidden;
}

.ts-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-slide {
  min-width: 100%;
  padding: 2px;
}

/* CARD */
.ts-card {
  background: transparent;
  border-radius: 18px;
  padding: 36px 36px 30px;
  /* border: 1px solid #e8eaf0; */
  animation: cardIn 0.5s ease both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ts-stars {
  display: flex;
  gap: 4px;
}

.ts-stars i {
  color: #ff9800;
  font-size: 14px;
}

.ts-quote-icon {
  font-size: 28px;
  color: #dc143c;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.ts-body {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 28px;
  font-style: italic;
}

.ts-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid #d933264f;
}

.ts-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f3a93, #3a5fc8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31, 58, 147, 0.25);
}

.ts-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.ts-role {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

/* CONTROLS */
.ts-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}

.ts-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.ts-dot.on {
  width: 26px;
  border-radius: 4px;
  background: linear-gradient(90deg, #dc143c, #ff9800);
}

.ts-navs {
  display: flex;
  gap: 10px;
}

.ts-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 15px;
  transition: all 0.25s;
}

.ts-nav:hover {
  border-color: #dc143c;
  color: #dc143c;
  background: #fff0f3;
  transform: scale(1.08);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .ts {
    flex-direction: column;
    min-height: auto;
  }

  .ts-left {
    width: 100%;
    height: 360px;
  }

  .ts-right {
    width: 100%;
    padding: 48px 32px;
  }
}

@media (max-width: 500px) {
  .ts-left {
    height: 350px;
  }

  .ts-left-content {
    padding: 40px 30px;
  }

  .ts-right {
    padding: 36px 22px;
  }

  .ts-card {
    padding: 26px 22px 22px;
  }

  .ts-stats {
    gap: 24px;
  }
}

/* SECTION */
.faq {
  padding: 100px 0 110px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* subtle bg pattern */
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(31, 58, 147, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-inner {
  /* max-width: 1100px;
      margin: 0 auto; */
  /* padding: 0 48px; */
  position: relative;
  z-index: 1;
}

/* LAYOUT: 50/50 */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

/* LEFT */
.faq-left {
  position: sticky;
  top: 60px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #dc143c;
  margin-bottom: 10px;
  animation: fadeUp 0.7s ease both;
}

.faq-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: #dc143c;
  opacity: 0.5;
}

.faq-image-wrap {
  width: 100%;
  padding-top: 10px;
  position: relative;
  margin-bottom: 30px;
}

.faq-image-wrap img {
  border-radius: 20px;
  width: 100%;
}

.faq-title {
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #111827;
  animation: fadeUp 0.7s 0.1s ease both;
}

.faq-title span {
  background: linear-gradient(130deg, #dc143c, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 500px;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* contact card */
.faq-card {
  margin-top: 20px;
  background: linear-gradient(135deg, #1f3a93 0%, #0c1e5c 100%);
  border-radius: 20px;
  padding: 25px 30px;
  animation: fadeUp 0.7s 0.35s ease both;
}

.faq-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.faq-card-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 22px;
}

.faq-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc143c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.faq-card-btn:hover {
  background: #ff9800;
  transform: translateX(4px);
}

.faq-card-btn i {
  font-size: 12px;
  transition: transform 0.25s;
}

.faq-card-btn:hover i {
  transform: translateX(3px);
}

/* RIGHT: accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}

.faq-item.open {
  box-shadow: 0 8px 32px rgba(31, 58, 147, 0.09);
  border-color: #c7ccde;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #fafafa;
}

.faq-q-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #dc143c;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}

.faq-item.open .faq-q-icon {
  background: linear-gradient(135deg, #dc143c, #ff9800);
  color: #fff;
}

.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: #dc143c;
  border-color: #dc143c;
  color: #fff;
  transform: rotate(45deg);
}

/* answer — CSS height animation via max-height */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s ease;
  padding: 0 24px 0 76px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px 76px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
  border-left: 2px solid #f0f0f5;
  padding-left: 16px;
}

.faq-item.open .faq-a p {
  border-color: #dc143c;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .faq-left {
    position: static;
  }

  .faq-sub {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .faq {
    padding: 70px 0 80px;
  }

  .faq-inner {
    padding: 0 22px;
  }

  .faq-q {
    padding: 16px 18px;
  }

  .faq-a {
    padding: 0 18px 0 18px;
  }

  .faq-item.open .faq-a {
    padding: 0 18px 18px 18px;
  }

  .faq-a p {
    padding-left: 12px;
  }
}

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0 88px;
}

/* Background image layer */
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bgg.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.cta-banner:hover .cta-bg {
  transform: scale(1);
}

/* Dark overlay — keeps text readable */
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 18, 20, 0.94) 0%,
    rgba(17, 18, 20, 0.8) 45%,
    rgba(212, 43, 43, 0.3) 75%,
    rgba(255, 106, 0, 0.18) 100%
  );
}

/* Noise texture */
.cta-banner .noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* Left accent line */
.cta-banner .accent-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--dti-red),
    var(--dti-orange),
    var(--dti-amber)
  );
  z-index: 2;
}

/* Bottom border glow */
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--dti-red),
    var(--dti-orange),
    var(--dti-amber),
    transparent 80%
  );
  z-index: 2;
}

.conta {
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-copy .eyebrow {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dti-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--dti-orange);
}

.cta-copy p.cta-headline {
  font-family: var(--font-h);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--dti-white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.cta-copy p.cta-headline span {
  color: var(--dti-orange);
}

.cta-copy p.cta-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  max-width: 420px;
  line-height: 1.7;
}

/* Stats strip inside CTA */
.cta-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
}

.cta-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.cta-stat .st-num {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 800;
  color: var(--dti-white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.cta-stat .st-num span {
  color: var(--dti-orange);
}

.cta-stat .st-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--dti-red), var(--dti-orange));
  color: var(--dti-white);
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity var(--dti-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-ghost {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  color: var(--dti-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition:
    border-color var(--dti-transition),
    color var(--dti-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: var(--dti-orange);
  color: var(--dti-orange);
}

/* Trust badge */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.cta-trust i {
  color: var(--dti-amber);
  font-size: 13px;
}

/* ── Contact Section ────────────────────────────────── */
.contact-section {
  padding: 80px 0 96px;
  background: var(--dta-dark);
}

.section-label {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dta-orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--dta-orange);
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dta-head);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.section-title span {
  color: var(--dta-orange);
}

.section-sub {
  font-size: 15px;
  color: var(--dta-text);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--dta-panel);
  border: 1px solid var(--dta-stroke);
  padding: 36px 36px 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dti-red),
    var(--dti-orange),
    var(--dti-amber)
  );
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dta-head);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--dta-red);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--dta-head);
  background: var(--dta-panel2);
  border: 1px solid var(--dta-stroke);
  padding: 11px 14px;
  outline: none;
  border-radius: 0;
  transition:
    border-color var(--dta-tr),
    background var(--dta-tr);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(75, 85, 99, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dta-orange);
  background: #fff;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  color: var(--dta-text);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 154px;
  line-height: 1.5;
}

.form-submit {
  margin-top: 4px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: linear-gradient(90deg, var(--dti-red), var(--dti-orange));
  color: #fff;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity var(--dta-tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-submit:hover {
  opacity: 0.88;
}

/* Right column: map + details */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.map-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid var(--dta-stroke);
  border-bottom: none;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

.details-panel {
  background: var(--dti-dark);
  padding: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-item:nth-child(2n) {
  border-right: none;
}

.detail-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dti-orange);
  font-size: 14px;
  margin-top: 2px;
}

.detail-text .dt-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.detail-text .dt-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--dti-white);
  line-height: 1.5;
}

.detail-text .dt-val a {
  color: var(--dti-white);
  text-decoration: none;
}

.detail-text .dt-val a:hover {
  color: var(--dti-orange);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .cta-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .contact-form-wrap {
    padding: 24px 20px 28px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .detail-item {
    border-right: none;
  }

  .detail-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .detail-item:last-child {
    border-bottom: none;
  }

  .cta-stat .st-num {
    font-size: 22px;
  }
}

/* ════════════════════════════════════════════
   DTI FOOTER V2  ·  prefix: dv2__
════════════════════════════════════════════ */
.dv2__footer {
  position: relative;
  overflow: hidden;
  background: var(--dti-dark);
}

/* ── HERO BAND ───────────────────────────── */
.dv2__hero-band {
  position: relative;
  background: var(--dti-dark);
  padding: 100px 0 100px;
  /* extra bottom for the clip */
  overflow: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), 0 100%); */
}

/* Industrial cross-hatch texture */
.dv2__hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255, 255, 255, 0.022) 0px,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

/* Orange flame spotlight — right side */
.dv2__hero-band::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(255, 106, 0, 0.13) 0%,
    rgba(212, 43, 43, 0.06) 35%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Big stamp text ── */
.dv2__stamp-wrap {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.dv2__stamp {
  font-family: var(--font-h);
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(235, 72, 22, 0.534);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 60px;
  /* Scrolling marquee */
  animation: dv2-marquee 24s linear infinite;
}

.dv2__stamp-wrap .dv2__stamp:nth-child(2) {
  animation-delay: -12s;
}

@keyframes dv2-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Top rule ── */
.dv2__top-rule {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--dti-red) 0%,
    var(--dti-orange) 40%,
    var(--dti-amber) 65%,
    transparent 100%
  );
}

/* ── Hero band inner ── */
.dv2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* Brand + headline row */
.dv2__brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo */
.dv2__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.dv2__logomark {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--dti-red), var(--dti-orange));
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.dv2__logomark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  clip-path: inherit;
}

.dv2__logomark span {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.dv2__logotext {
  display: flex;
  flex-direction: column;
}

.dv2__logotext .lt-a {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dti-white);
  line-height: 1;
}

.dv2__logotext .lt-b {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 4px;
}

/* Tagline block (right of logo row) */
.dv2__tagline-block {
  max-width: 420px;
}

.dv2__tagline-eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dti-orange);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv2__tagline-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--dti-orange);
}

.dv2__tagline-head {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--dti-white);
  margin-bottom: 12px;
}

.dv2__tagline-head em {
  font-style: normal;
  background: linear-gradient(90deg, var(--dti-orange), var(--dti-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dv2__tagline-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

/* ── Divider ── */
.dv2__hero-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 40px 0 36px;
}

/* ── Stat strip ── */
.dv2__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dv2__stat {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.dv2__stat:first-child {
  padding-left: 0;
}

.dv2__stat:last-child {
  border-right: none;
}

.dv2__stat .st-num {
  font-family: var(--font-h);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dti-white);
}

.dv2__stat .st-num span {
  color: var(--dti-orange);
}

.dv2__stat .st-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 5px;
}

/* ── Cert badges ── */
.dv2__badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.dv2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  transition:
    color var(--dti-tr),
    border-color var(--dti-tr);
}

.dv2__badge i {
  color: var(--dti-amber);
  font-size: 9px;
}

.dv2__badge:hover {
  color: var(--dti-amber);
  border-color: rgba(255, 153, 0, 0.28);
}

/* ═══════════════════════════════════════════
   GRID ZONE
═══════════════════════════════════════════ */
.dv2__grid-zone {
  background: var(--dti-panel);
  position: relative;
  padding: 56px 0 0;
  /* Overlap the clipped band above */
  margin-top: -2px;
}

/* Diagonal slash accent — pure CSS */
.dv2__grid-zone::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--dti-red),
    var(--dti-orange),
    var(--dti-amber),
    transparent 85%
  );
  opacity: 0;
  /* hidden — the clip-path on hero-band handles the visual edge */
}

/* 4-column link grid */
.dv2__link-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dv2__lg-col {
  padding: 0 36px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dv2__lg-col:first-child {
  padding-left: 0;
}

.dv2__lg-col:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 36px;
}

.dv2__lg-col:not(:first-child):not(:last-child) {
  padding-left: 36px;
}

/* Col heading */
.dv2__col-head {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dti-orange);
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
}

/* Nav links */
.dv2__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.dv2__nav li a {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition:
    color var(--dti-tr),
    border-color var(--dti-tr),
    padding-left var(--dti-tr);
  position: relative;
}

.dv2__nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dti-orange);
  bottom: -1px;
  transition: width var(--dti-tr);
}

.dv2__nav li a:hover {
  color: var(--dti-white);
  padding-left: 10px;
}

.dv2__nav li a:hover::before {
  width: 100%;
}

/* Contact items in last col */
.dv2__ci-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dv2__ci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.dv2__ci-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(255, 106, 0, 0.09);
  border: 1px solid rgba(255, 106, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dti-orange);
  font-size: 11px;
  margin-top: 2px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.dv2__ci-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dv2__ci-lbl {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.dv2__ci-val {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.dv2__ci-val a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--dti-tr);
}

.dv2__ci-val a:hover {
  color: var(--dti-orange);
}

/* Live status dot */
.dv2__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 4px;
}

.dv2__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: dv2-pulse 1.8s ease infinite;
}

@keyframes dv2-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ═══════════════════════════════════════════
   BOTTOM ZONE — newsletter + copyright
═══════════════════════════════════════════ */
.dv2__bottom-zone {
  background: var(--dti-base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Newsletter */
.dv2__nl {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dv2__nl-eyebrow {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dti-orange);
  margin-bottom: 2px;
}

.dv2__nl-head {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dti-white);
}

.dv2__nl-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.dv2__nl-input {
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--dti-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 12px 18px;
  outline: none;
  width: 260px;
  transition: border-color var(--dti-tr);
}

.dv2__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.dv2__nl-input:focus {
  border-color: var(--dti-orange);
}

.dv2__nl-btn {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: linear-gradient(90deg, var(--dti-red), var(--dti-orange));
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: opacity var(--dti-tr);
  white-space: nowrap;
}

.dv2__nl-btn:hover {
  opacity: 0.85;
}

/* Socials in newsletter row */
.dv2__socials {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  align-self: center;
}

.dv2__soc {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-decoration: none;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition:
    color var(--dti-tr),
    background var(--dti-tr),
    border-color var(--dti-tr),
    transform var(--dti-tr);
}

.dv2__soc:hover {
  color: var(--dti-orange);
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.25);
  transform: translateY(-2px);
}

/* Copyright bar */
.dv2__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.dv2__copy-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.6;
}

.dv2__copy-text a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color var(--dti-tr);
}

.dv2__copy-text a:hover {
  color: var(--dti-orange);
}

.dv2__legal {
  display: flex;
  list-style: none;
  gap: 0;
}

.dv2__legal li a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  text-decoration: none;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.04em;
  transition: color var(--dti-tr);
}

.dv2__legal li:last-child a {
  border-right: none;
  padding-right: 0;
}

.dv2__legal li:first-child a {
  padding-left: 0;
}

.dv2__legal li a:hover {
  color: var(--dti-orange);
}

.dv2__totop {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  text-decoration: none;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition:
    background var(--dti-tr),
    color var(--dti-tr),
    border-color var(--dti-tr),
    transform var(--dti-tr);
  flex-shrink: 0;
}

.dv2__totop:hover {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.28);
  color: var(--dti-orange);
  transform: translateY(-2px);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .dv2__link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dv2__lg-col:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .dv2__lg-col:nth-child(3) {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dv2__lg-col:nth-child(4) {
    padding-left: 36px;
  }

  .dv2__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .dv2__stat:nth-child(2) {
    border-right: none;
  }

  .dv2__nl {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 700px) {
  .dv2__hero-band {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  }

  .dv2__brand-row {
    flex-direction: column;
    gap: 28px;
  }

  .dv2__link-grid {
    grid-template-columns: 1fr;
  }

  .dv2__lg-col {
    border-right: none !important;
    padding: 0 0 28px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dv2__lg-col:first-child {
    border-top: none;
  }

  .dv2__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .dv2__nl-form {
    flex-direction: column;
    gap: 0;
  }

  .dv2__nl-input {
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }

  .dv2__nl-btn {
    width: 100%;
    justify-content: center;
    clip-path: none;
  }

  .dv2__copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dv2__legal {
    flex-wrap: wrap;
  }

  .dv2__stamp {
    font-size: 18vw;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 1s;
}
.delay-6 {
  transition-delay: 1.2s;
}
.delay-7 {
  transition-delay: 1.4s;
}
.delay-8 {
  transition-delay: 1.6s;
}
.delay-9 {
  transition-delay: 1.8s;
}
.delay-10 {
  transition-delay: 2s;
}

.dti__topbar,
.dti__header {
  opacity: 0;
  animation: fadeIn 1s ease-in-out 0.2s forwards;
}

#demo {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59, 130, 246, 0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255, 255, 255, 0.65);
  --phero-sep: rgba(255, 255, 255, 0.4);

  font-family: "DM Sans", sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(253 110 0) 0%,
    rgb(235 1 0 / 56%) 100%
  );
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ea0000, #fd7100, #eb0000);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 15px;
}

.sitemap-title {
  color: #2b2a28;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sitemap-card {
  background-color: white;
  border: 2px solid var(--dti-orange);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: #2b2a28;
}

.sitemap-card:hover {
  background: linear-gradient(
    135deg,
    var(--dti-red) 0%,
    var(--dti-orange) 100%
  );
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
  text-decoration: none;
}

.card-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-description {
  font-size: 0.9rem;
  opacity: 0.8;
}

.sitemap-card:hover .card-description {
  opacity: 1;
}

.category-section {
  margin-bottom: 40px;
}

.category-header {
  color: var(--dti-orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--dti-orange);
}

.main-links {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .sitemap-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .category-header {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .sitemap-card {
    padding: 15px;
  }

  .card-label {
    font-size: 1rem;
  }
}
