/* =========================================================
   TECH ANNOUNCEMENT STRIP (below hero)
========================================================= */

.dv-tech-strip {
  background: #0e1a14;
  border-top: 1px solid rgba(41, 184, 139, 0.15);
  border-bottom: 1px solid rgba(41, 184, 139, 0.1);
  padding: 0;
  overflow: hidden;
}

.dv-tech-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 20px;
}

.dv-tech-strip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #29b88b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.dv-tech-strip-label i {
  font-size: 14px;
}

.dv-tech-strip-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.dv-tech-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dv-tech-strip-item:hover {
  background: rgba(41, 184, 139, 0.1);
  border-color: rgba(41, 184, 139, 0.3);
  color: #29b88b;
  text-decoration: none;
}

.dv-tech-strip-item i {
  font-size: 12px;
  color: #29b88b;
}

.dv-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dv-strip-dot.live {
  background: #29b88b;
  animation: pulse-dot 2s ease infinite;
}

.dv-tech-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #29b88b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.dv-tech-strip-cta:hover {
  color: #43f0b6;
  text-decoration: none;
}

.dv-tech-strip-cta i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.dv-tech-strip-cta:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .dv-tech-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .dv-tech-strip-tools {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .dv-tech-strip-item span {
    display: none;
  }

  .dv-tech-strip-item {
    padding: 8px 12px;
  }
}

/* =========================================================
   PROPRIETARY TECHNOLOGY SECTION
========================================================= */

.dv-tech-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0e1a14 0%, #1b2336 100%);
  position: relative;
  overflow: hidden;
}

.dv-tech-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(41, 184, 139, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.dv-tech-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41, 184, 139, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

/* Left intro */
.dv-tech-intro {
  position: relative;
  z-index: 1;
}

.dv-tech-badge {
  display: inline-block;
  background: rgba(41, 184, 139, 0.12);
  color: #29b88b !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dv-tech-intro h2 {
  color: #ffffff !important;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.dv-tech-intro h2 span {
  color: #29b88b !important;
}

.dv-tech-intro > p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.dv-tech-stats {
  display: flex;
  gap: 30px;
}

.dv-tech-stat {
  display: flex;
  flex-direction: column;
}

.dv-tech-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #29b88b !important;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.dv-tech-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Right grid */
.dv-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Tool card */
.dv-tech-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.4s ease;
}

.dv-tech-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(41, 184, 139, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Status badges */
.dv-tech-card-status {
  align-self: flex-end;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.dv-tech-card-status.live {
  background: rgba(41, 184, 139, 0.15);
  color: #29b88b;
  border: 1px solid rgba(41, 184, 139, 0.3);
}

.dv-tech-card-status.live::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #29b88b;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.dv-tech-card-status.soon {
  background: rgba(240, 165, 0, 0.12);
  color: #f0a500;
  border: 1px solid rgba(240, 165, 0, 0.25);
}

.dv-tech-card-status.dev {
  background: rgba(100, 149, 237, 0.12);
  color: #6495ed;
  border: 1px solid rgba(100, 149, 237, 0.25);
}

/* Icon */
.dv-tech-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(41, 184, 139, 0.15), rgba(41, 184, 139, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.dv-tech-card-icon i {
  font-size: 22px;
  color: #29b88b;
}

/* Card content — forced colors to prevent override */
.dv-tech-card h4 {
  color: #ffffff !important;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.dv-tech-card-tagline {
  color: #29b88b !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px !important;
}

.dv-tech-card > p,
.dv-tech-card-wide-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dv-tech-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.dv-tech-features li {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dv-tech-features li i {
  color: #29b88b !important;
  font-size: 11px;
}

.dv-tech-link {
  color: #29b88b !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.dv-tech-link:hover {
  color: #43f0b6 !important;
  gap: 10px;
}

/* Wide card (VigiVault - spans full width) */
.dv-tech-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.dv-tech-card-wide .dv-tech-card-icon {
  flex-shrink: 0;
}

.dv-tech-card-wide-content {
  display: flex;
  gap: 30px;
  flex: 1;
}

.dv-tech-card-wide-content > div {
  flex: 1;
}

.dv-tech-card-wide-content > ul {
  flex-shrink: 0;
  margin: 0;
}

/* =========================================================
   "POWERED BY" BADGES FOR SERVICE PAGES
========================================================= */

.powered-by-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0e1a14, #1b2336);
  border: 1px solid rgba(41, 184, 139, 0.2);
  border-radius: 50px;
  padding: 10px 22px 10px 14px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.powered-by-badge:hover {
  border-color: rgba(41, 184, 139, 0.4);
  box-shadow: 0 4px 20px rgba(41, 184, 139, 0.1);
}

.powered-by-badge .pb-icon {
  width: 32px;
  height: 32px;
  background: rgba(41, 184, 139, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.powered-by-badge .pb-icon i {
  color: #29b88b;
  font-size: 14px;
}

.powered-by-badge .pb-text {
  display: flex;
  flex-direction: column;
}

.powered-by-badge .pb-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}

.powered-by-badge .pb-name {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.powered-by-badge .pb-status {
  width: 8px;
  height: 8px;
  background: #29b88b;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  margin-left: 4px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .dv-tech-section {
    padding: 70px 0;
  }

  .dv-tech-intro {
    margin-bottom: 40px;
  }

  .dv-tech-intro h2 {
    font-size: 28px;
  }

  .dv-tech-grid {
    grid-template-columns: 1fr;
  }

  .dv-tech-card-wide {
    flex-direction: column;
  }

  .dv-tech-card-wide-content {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .dv-tech-intro h2 {
    font-size: 24px;
  }

  .dv-tech-card {
    padding: 22px;
  }

  .dv-tech-stats {
    gap: 20px;
  }

  .powered-by-badge {
    padding: 8px 16px 8px 10px;
  }
}
