/* ==========================================================================
   Hero Visual - Premium 2026 CSS Art
   World-class animated illustrations with glassmorphism and 3D depth
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base Container
   -------------------------------------------------------------------------- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .hero-visual {
    min-height: 500px;
  }
}

.hero-visual--premium {
  transform-style: preserve-3d;
}

/* --------------------------------------------------------------------------
   Ambient Glows
   -------------------------------------------------------------------------- */
.hv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  animation: hv-pulse 6s ease-in-out infinite;
}

html.dark .hv-glow {
  opacity: 0.6;
}

.hv-glow--primary {
  width: 60%;
  height: 60%;
  top: 10%;
  left: 20%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.hv-glow--secondary {
  width: 50%;
  height: 50%;
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation-delay: -3s;
}

html.dark .hv-glow--secondary {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
}

@keyframes hv-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* --------------------------------------------------------------------------
   Floating Orbs
   -------------------------------------------------------------------------- */
.hv-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(59,130,246,0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

html.dark .hv-orb {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.hv-orb--1 {
  width: 80px;
  height: 80px;
  top: 5%;
  left: 5%;
  animation: hv-float-1 8s ease-in-out infinite;
}

.hv-orb--2 {
  width: 50px;
  height: 50px;
  top: 60%;
  left: 0%;
  animation: hv-float-2 10s ease-in-out infinite;
}

.hv-orb--3 {
  width: 35px;
  height: 35px;
  top: 20%;
  right: 5%;
  animation: hv-float-3 7s ease-in-out infinite;
}

@keyframes hv-float-1 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(5deg); }
  50% { transform: translateY(-10px) translateX(20px) rotate(0deg); }
  75% { transform: translateY(-25px) translateX(5px) rotate(-5deg); }
}

@keyframes hv-float-2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes hv-float-3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(-10px); }
  66% { transform: translateY(-25px) translateX(5px); }
}

/* --------------------------------------------------------------------------
   Browser Window - Main Element
   -------------------------------------------------------------------------- */
.hv-browser {
  position: absolute;
  width: 75%;
  top: 8%;
  left: 5%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 25px 50px -12px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transform-origin: center center;
  animation: hv-browser-float 6s ease-in-out infinite;
}

@keyframes hv-browser-float {
  0%, 100% {
    transform: rotateY(-5deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(3deg) translateY(-10px);
  }
}

.hv-browser__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hv-browser__dots {
  display: flex;
  gap: 6px;
}

.hv-browser__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hv-browser__dots span:nth-child(1) { background: #ff5f57; }
.hv-browser__dots span:nth-child(2) { background: #ffbd2e; }
.hv-browser__dots span:nth-child(3) { background: #28ca41; }

.hv-browser__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.hv-browser__url svg {
  color: #28ca41;
}

.hv-browser__content {
  padding: 16px;
}

.hv-browser__nav {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 16px;
}

.hv-browser__hero {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  margin-bottom: 16px;
}

.hv-browser__hero-text div {
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 5px;
  margin-bottom: 8px;
}

.hv-browser__hero-text div:first-child {
  width: 80%;
  background: rgba(255,255,255,0.9);
}

.hv-browser__hero-text div:last-child {
  width: 60%;
}

.hv-browser__hero-btn {
  width: 60px;
  height: 24px;
  background: white;
  border-radius: 6px;
  margin-top: 12px;
}

.hv-browser__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hv-browser__card {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* --------------------------------------------------------------------------
   Code Editor - Floating Element
   -------------------------------------------------------------------------- */
.hv-code {
  position: absolute;
  width: 45%;
  bottom: 5%;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 25px 50px -12px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  overflow: hidden;
  transform: rotateY(5deg) rotateX(-3deg);
  animation: hv-code-float 7s ease-in-out infinite;
}

@keyframes hv-code-float {
  0%, 100% {
    transform: rotateY(5deg) rotateX(-3deg) translateY(0);
  }
  50% {
    transform: rotateY(3deg) rotateX(-5deg) translateY(-15px);
  }
}

.hv-code__bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.4);
}

.hv-code__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hv-code__bar span:nth-child(1) { background: #ff5f57; }
.hv-code__bar span:nth-child(2) { background: #ffbd2e; }
.hv-code__bar span:nth-child(3) { background: #28ca41; }

.hv-code__content {
  padding: 14px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
  line-height: 1.8;
}

.hv-code__line {
  color: rgba(255,255,255,0.8);
}

.hv-code__line--indent {
  padding-left: 16px;
}

.hv-code--purple { color: #c792ea; }
.hv-code--blue { color: #82aaff; }
.hv-code--green { color: #c3e88d; }
.hv-code--orange { color: #f78c6c; }
.hv-code--cyan { color: #89ddff; }

/* --------------------------------------------------------------------------
   Analytics Card
   -------------------------------------------------------------------------- */
.hv-analytics {
  position: absolute;
  width: 35%;
  top: 55%;
  left: 0;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow:
    0 20px 40px -12px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  animation: hv-analytics-float 8s ease-in-out infinite;
}

@keyframes hv-analytics-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-12px) translateX(5px);
  }
}

.hv-analytics__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hv-analytics__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hv-analytics__badge {
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.2);
  padding: 3px 8px;
  border-radius: 20px;
}

.hv-analytics__chart {
  height: 50px;
}

.hv-analytics__chart svg {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Floating Metrics
   -------------------------------------------------------------------------- */
.hv-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
}

.hv-metric__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  color: white;
}

.hv-metric__icon svg {
  width: 14px;
  height: 14px;
}

.hv-metric__value {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.hv-metric__value span {
  color: #fbbf24;
}

.hv-metric--1 {
  top: 3%;
  right: 15%;
  animation: hv-metric-float 5s ease-in-out infinite;
}

.hv-metric--2 {
  top: 35%;
  right: 0;
  animation: hv-metric-float 6s ease-in-out infinite 1s;
}

.hv-metric--3 {
  bottom: 25%;
  left: 35%;
  animation: hv-metric-float 7s ease-in-out infinite 2s;
}

@keyframes hv-metric-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   Decorative Rings
   -------------------------------------------------------------------------- */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(249,115,22,0.3);
  pointer-events: none;
}

.hv-ring--1 {
  width: 95%;
  height: 95%;
  top: 2.5%;
  left: 2.5%;
  animation: hv-rotate 40s linear infinite;
}

.hv-ring--2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  animation: hv-rotate 30s linear infinite reverse;
  border-color: rgba(59,130,246,0.2);
}

@keyframes hv-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Decorative Dots
   -------------------------------------------------------------------------- */
.hv-dots {
  position: absolute;
  bottom: 10%;
  right: 30%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.hv-dots::before,
.hv-dots::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.hv-dots::before { grid-column: span 4; display: none; }

/* Add 8 dots via box-shadow */
.hv-dots::after {
  box-shadow:
    8px 0 0 0 var(--primary),
    16px 0 0 0 var(--primary),
    24px 0 0 0 var(--primary),
    0 8px 0 0 var(--primary),
    8px 8px 0 0 var(--primary),
    16px 8px 0 0 var(--primary),
    24px 8px 0 0 var(--primary);
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hv-browser {
    width: 85%;
    transform: rotateY(0deg) rotateX(0deg);
  }

  .hv-code {
    width: 50%;
    right: -5%;
    transform: none;
  }

  .hv-analytics {
    width: 40%;
  }

  .hv-metric--2 {
    right: 5%;
  }
}

@media (max-width: 768px) {
  .hero-visual {
    min-height: 300px;
  }

  .hv-browser {
    width: 90%;
    left: 5%;
    top: 5%;
  }

  .hv-code,
  .hv-analytics {
    display: none;
  }

  .hv-metric--1 {
    top: auto;
    bottom: 15%;
    right: 5%;
  }

  .hv-metric--2,
  .hv-metric--3 {
    display: none;
  }

  .hv-orb--2,
  .hv-orb--3 {
    display: none;
  }

  .hv-ring--2 {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Team Card - About Page Hero
   -------------------------------------------------------------------------- */
.hv-team-card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(249,115,22,0.2);
  padding: 28px;
  animation: hv-team-float 7s ease-in-out infinite;
  z-index: 10;
}

@keyframes hv-team-float {
  0%, 100% {
    transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotateY(-1deg) rotateX(1deg) translateY(-12px);
  }
}

.hv-team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hv-team-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px -6px rgba(249,115,22,0.5);
}

.hv-team-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.hv-team-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hv-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border: 3px solid rgba(255,255,255,0.2);
  margin-left: -12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hv-avatar:first-child {
  margin-left: 0;
}

.hv-avatar:hover {
  transform: scale(1.1) translateY(-4px);
  z-index: 5;
}

.hv-avatar--1 {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 8px 20px -6px rgba(99,102,241,0.5);
  z-index: 3;
}

.hv-avatar--2 {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 8px 20px -6px rgba(34,197,94,0.5);
  z-index: 2;
}

.hv-avatar--3 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 8px 20px -6px rgba(249,115,22,0.5);
  z-index: 1;
}

.hv-team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hv-team-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hv-team-stat:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.hv-team-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.hv-team-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About page responsive */
@media (max-width: 768px) {
  .hv-team-card {
    width: 240px;
    padding: 20px;
  }

  .hv-avatar {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .hv-team-stat-value {
    font-size: 20px;
  }
}

/* --------------------------------------------------------------------------
   Main Card - Homepage Browser Mockup (Centered)
   -------------------------------------------------------------------------- */
.hv-main-card {
  position: absolute;
  width: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(249,115,22,0.2);
  overflow: hidden;
  animation: hv-main-float 7s ease-in-out infinite;
  z-index: 10;
}

@keyframes hv-main-float {
  0%, 100% {
    transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotateY(-1deg) rotateX(1deg) translateY(-12px);
  }
}

.hv-main-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hv-main-card__dots {
  display: flex;
  gap: 6px;
}

.hv-main-card__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hv-main-card__dots span:nth-child(1) { background: #ff5f57; }
.hv-main-card__dots span:nth-child(2) { background: #ffbd2e; }
.hv-main-card__dots span:nth-child(3) { background: #28ca41; }

.hv-main-card__url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.hv-main-card__url svg {
  color: #28ca41;
}

.hv-main-card__body {
  padding: 16px;
}

.hv-main-card__hero-block {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  margin-bottom: 12px;
}

.hv-main-card__title-line {
  height: 12px;
  width: 80%;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  margin-bottom: 8px;
}

.hv-main-card__subtitle-line {
  height: 8px;
  width: 60%;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}

.hv-main-card__btn {
  width: 70px;
  height: 24px;
  background: white;
  border-radius: 6px;
  margin-top: 14px;
}

.hv-main-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hv-main-card__grid-item {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Floating Badges */
.hv-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.2);
  font-size: 12px;
  font-weight: 700;
  color: white;
  z-index: 15;
}

.hv-floating-badge__icon {
  font-size: 16px;
}

.hv-floating-badge--1 {
  /* Rocket - top right area */
  top: 12%;
  right: 8%;
  animation: hv-badge-float 5s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(249,115,22,0.3) 0%, rgba(249,115,22,0.15) 100%);
  border-color: rgba(249,115,22,0.5);
}

.hv-floating-badge--2 {
  /* SEO - left side middle */
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  animation: hv-badge-float-centered 6s ease-in-out infinite 1s;
  background: linear-gradient(135deg, rgba(59,130,246,0.3) 0%, rgba(59,130,246,0.15) 100%);
  border-color: rgba(59,130,246,0.5);
}

.hv-floating-badge--3 {
  /* Rating - bottom right area */
  bottom: 12%;
  right: 10%;
  animation: hv-badge-float 7s ease-in-out infinite 2s;
  background: linear-gradient(135deg, rgba(251,191,36,0.35) 0%, rgba(251,191,36,0.15) 100%);
  border-color: rgba(251,191,36,0.6);
}

@keyframes hv-badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hv-badge-float-centered {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* --------------------------------------------------------------------------
   Services Card - Services Archive
   -------------------------------------------------------------------------- */
.hv-services-card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(249,115,22,0.2);
  padding: 28px;
  animation: hv-team-float 7s ease-in-out infinite;
  z-index: 10;
}

.hv-services-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hv-services-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px -6px rgba(249,115,22,0.5);
}

.hv-services-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.hv-services-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hv-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hv-services-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hv-services-item:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.12);
}

.hv-services-item-icon {
  font-size: 20px;
}

.hv-services-item-text {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* --------------------------------------------------------------------------
   Industries Card - Industries Archive
   -------------------------------------------------------------------------- */
.hv-industries-card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(59,130,246,0.2);
  padding: 28px;
  animation: hv-team-float 7s ease-in-out infinite;
  z-index: 10;
}

.hv-industries-header {
  text-align: center;
  margin-bottom: 20px;
}

.hv-industries-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 20px -6px rgba(59,130,246,0.5);
}

.hv-industries-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.hv-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hv-industries-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hv-industries-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.hv-industries-item-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.hv-industries-item-text {
  font-size: 11px;
  font-weight: 600;
  color: white;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Blog Card - Blog Archive
   -------------------------------------------------------------------------- */
.hv-blog-card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(34,197,94,0.2);
  padding: 28px;
  animation: hv-team-float 7s ease-in-out infinite;
  z-index: 10;
}

.hv-blog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hv-blog-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px -6px rgba(34,197,94,0.5);
}

.hv-blog-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.hv-blog-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hv-blog-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hv-blog-post-thumb {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.hv-blog-post-content {
  flex: 1;
}

.hv-blog-post-title {
  height: 10px;
  width: 100%;
  background: rgba(255,255,255,0.6);
  border-radius: 5px;
  margin-bottom: 6px;
}

.hv-blog-post-meta {
  height: 6px;
  width: 60%;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Contact Card - Contact Page
   -------------------------------------------------------------------------- */
.hv-contact-card {
  position: absolute;
  width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(3deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 0 80px -20px rgba(249,115,22,0.2);
  padding: 28px;
  animation: hv-team-float 7s ease-in-out infinite;
  z-index: 10;
}

.hv-contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.hv-contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(249,115,22,0.5);
}

.hv-contact-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.hv-contact-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.hv-contact-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hv-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hv-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hv-contact-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv-contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hv-contact-item-text {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* Responsive for all cards */
@media (max-width: 768px) {
  .hv-main-card,
  .hv-services-card,
  .hv-industries-card,
  .hv-blog-card,
  .hv-contact-card {
    width: 240px;
    padding: 20px;
  }

  .hv-floating-badge--2,
  .hv-floating-badge--3 {
    display: none;
  }
}

/* ==========================================================================
   Light Mode Adjustments - Readable Text on Light Backgrounds
   ========================================================================== */

/* Glassy cards - darker backgrounds for contrast in light mode */
.hv-browser,
.hv-analytics,
.hv-team-card,
.hv-main-card,
.hv-services-card,
.hv-industries-card,
.hv-blog-card,
.hv-contact-card {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(15, 39, 68, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Floating badges - ensure readable on light hero */
.hv-floating-badge {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(15, 39, 68, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

.hv-floating-badge--1 {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(234, 88, 12, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.hv-floating-badge--2 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.hv-floating-badge--3 {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.9) 0%, rgba(202, 138, 4, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Metrics - readable on light backgrounds */
.hv-metric {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(15, 39, 68, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Orbs - subtle on light background */
.hv-orb {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-color: rgba(249, 115, 22, 0.2);
}

/* Browser bar - dark for contrast */
.hv-browser__bar,
.hv-main-card__header {
  background: rgba(15, 23, 42, 0.95);
}

/* Analytics card adjustments */
.hv-analytics {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(15, 39, 68, 0.9) 100%);
}

/* ==========================================================================
   Dark Mode Adjustments - Lighter glassmorphism
   ========================================================================== */
html.dark .hv-browser,
html.dark .hv-analytics,
html.dark .hv-team-card,
html.dark .hv-main-card,
html.dark .hv-services-card,
html.dark .hv-industries-card,
html.dark .hv-blog-card,
html.dark .hv-contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

html.dark .hv-floating-badge {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
}

html.dark .hv-floating-badge--1 {
  background: linear-gradient(135deg, rgba(249,115,22,0.3) 0%, rgba(249,115,22,0.15) 100%);
  border-color: rgba(249,115,22,0.5);
}

html.dark .hv-floating-badge--2 {
  background: linear-gradient(135deg, rgba(59,130,246,0.3) 0%, rgba(59,130,246,0.15) 100%);
  border-color: rgba(59,130,246,0.5);
}

html.dark .hv-floating-badge--3 {
  background: linear-gradient(135deg, rgba(251,191,36,0.35) 0%, rgba(251,191,36,0.15) 100%);
  border-color: rgba(251,191,36,0.6);
}

html.dark .hv-metric {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.08) 100%);
}

html.dark .hv-orb {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.15);
}

html.dark .hv-browser__bar,
html.dark .hv-main-card__header {
  background: rgba(0,0,0,0.4);
}

html.dark .hv-analytics {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
}
