 .hero-28 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-28 .hero-content {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
.hero-28 .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-28 .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-28 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  z-index: 0;
}
.hero-28 .hero-text {
  text-align: center;
  padding: 60px 0;
}
.hero-28 .hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-28 .hero-text h1 {
    font-size: 2.5rem;
  }
}
.hero-28 .hero-text .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hero-28 .hero-text .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.hero-28 .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-28 .hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid var(--accent-color);
}
.hero-28 .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.hero-28 .hero-buttons .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.hero-28 .hero-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
}
.hero-28 .hero-buttons .btn.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .hero-28 .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.hero-28 .hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(10px);
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}
.hero-28 .hero-info .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-28 .hero-info .info-item .icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-28 .hero-info .info-item .icon i {
  font-size: 24px;
  color: var(--contrast-color);
}
.hero-28 .hero-info .info-item .content h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.hero-28 .hero-info .info-item .content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .hero-28 .hero-info .info-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .hero-28 .hero-info .info-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .hero-28 .hero-info {
    position: relative;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-28 {
    min-height: auto;
  }
  .hero-28 .hero-content {
    min-height: 100vh;
  }
  .hero-28 .hero-text {
    padding: 40px 0;
  }
} 