:root {
  --dhc-glass-border: rgba(255, 255, 255, 0.18);
  --dhc-glass-bg: linear-gradient(135deg, rgba(10, 24, 64, 0.52), rgba(22, 68, 168, 0.24));
  --dhc-glass-highlight: radial-gradient(circle at 20% 20%, rgba(84, 155, 255, 0.35), transparent 55%);
  --dhc-text: rgba(255, 255, 255, 0.94);
  --dhc-text-muted: rgba(255, 255, 255, 0.74);
  --dhc-accent: #3b82f6;
  --dhc-accent-strong: #1d4ed8;
}

.dhc-hero-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(18px, 4vw, 40px) 0;
}

.dhc-hero-promo-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.dhc-hero-promo {
  position: relative;
  display: block;
  width: min(520px, 100%);
  --dhc-lift: -240px;
  padding: 28px 26px;
  border-radius: 20px;
  color: var(--dhc-text);
  text-decoration: none;
  border: 1px solid var(--dhc-glass-border);
  background: var(--dhc-glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 46px rgba(5, 14, 56, 0.55), 0 0 36px rgba(75, 125, 255, 0.28);
  overflow: hidden;
  transform: translateY(var(--dhc-lift));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dhc-hero-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dhc-glass-highlight);
  opacity: 0.9;
  pointer-events: none;
}

.dhc-hero-promo::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.dhc-hero-promo__header,
.dhc-hero-promo__tiles,
.dhc-hero-promo__cta {
  position: relative;
  z-index: 1;
}

.dhc-hero-promo__title {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #ffffff;
}

.dhc-hero-promo__sub {
  margin: 0;
  color: var(--dhc-text-muted);
  font-size: 0.98rem;
}

.dhc-hero-promo__tiles {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dhc-hero-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  min-height: 102px;
  text-align: center;
  color: rgba(238, 244, 255, 0.95);
  background: rgba(10, 22, 58, 0.6);
  border: 1px solid rgba(140, 186, 255, 0.28);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  box-shadow: inset 0 0 16px rgba(76, 125, 255, 0.24), 0 10px 22px rgba(3, 12, 45, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dhc-hero-tile::after {
  content: "";
  position: absolute;
  inset: 6px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  background: radial-gradient(circle at 30% 20%, rgba(86, 154, 255, 0.35), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.dhc-hero-tile>* {
  position: relative;
  z-index: 1;
}

.dhc-hero-tile span {
  font-size: 0.78rem;
  line-height: 1.2;
  color: rgba(240, 246, 255, 0.92);
}

.dhc-hero-icon {
  width: 22px;
  height: 22px;
  color: rgba(195, 219, 255, 0.95);
}

.dhc-hero-promo__cta {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.dhc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--dhc-accent), var(--dhc-accent-strong));
  box-shadow: 0 12px 26px rgba(16, 69, 219, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dhc-hero-cta__icon {
  width: 18px;
  height: 18px;
}

.dhc-hero-promo:hover {
  transform: translateY(calc(var(--dhc-lift) - 2px));
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 28px 60px rgba(7, 16, 64, 0.6), 0 0 44px rgba(94, 150, 255, 0.35);
}

.dhc-hero-promo:hover .dhc-hero-cta {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 69, 219, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.dhc-hero-promo:hover .dhc-hero-tile {
  transform: translateY(-2px);
  box-shadow: inset 0 0 18px rgba(86, 154, 255, 0.32), 0 14px 26px rgba(3, 12, 45, 0.45);
}

.dhc-hero-promo:focus-visible {
  outline: 2px solid rgba(140, 186, 255, 0.9);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .dhc-hero-col {
    justify-content: center;
  }

  .dhc-hero-promo-wrap {
    justify-content: center;
  }

  .dhc-hero-promo {
    --dhc-lift: 0px;
    margin-top: 22px;
  }
}

@media (max-width: 575px) {
  .dhc-hero-promo {
    padding: 24px 20px;
  }

  .dhc-hero-promo__tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dhc-hero-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .dhc-hero-promo__tiles {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dhc-hero-promo,
  .dhc-hero-cta,
  .dhc-hero-tile {
    transition: none;
  }
}
