:root {
  --primary-color: #050c41;
  --accent-color: #3182ce;
  --gradient-start: #f8f9ff;
  --gradient-end: #e7e8d8;
  --card-bg: rgba(255, 255, 255, 0.9);
  --transition-slow: 0.5s;
  --transition-fast: 0.3s;
}

.hosting-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
          var(--gradient-start),
          var(--gradient-end));
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f2f3ea;
  z-index: 0;
}

/* Title Styling */
.title-wrapper {
  position: relative;
  padding: 2rem 0;
}

.headline-gradient {
  background: linear-gradient(135deg,
          var(--primary-color),
          var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.glowing-line {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 3px;
  background: linear-gradient(90deg,
          transparent,
          var(--accent-color),
          transparent);
  animation: glow 2s infinite;
}

/* Premium Visual Styling */
.premium-visual-container {
  position: relative;
  padding: 2rem;
}

.visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(5, 12, 65, 0.15);
  transition: transform var(--transition-slow) ease;
}

.visual-frame:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.frame-decoration {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.floating-elements .floating-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.5;
}

/* Premium Feature Cards */
.features-container {
  display: grid;
  gap: 1.5rem;
}

.premium-feature-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast) ease;
}

.premium-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent);
  transform: translateX(-100%);
  transition: transform var(--transition-slow) ease;
}

.premium-feature-card:hover::before {
  transform: translateX(100%);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
          rgba(49, 130, 206, 0.1),
          transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.premium-feature-card:hover .card-glow {
  opacity: 1;
}

/* Icon Styling */
.icon-hexagon {
  width: 60px;
  height: 60px;
  background: rgba(5, 12, 65, 0.05);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast) ease;
}

.feature-icon {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-feature-card:hover .icon-hexagon {
  background: rgba(5, 12, 65, 0.1);
}

.premium-feature-card:hover .feature-icon {
  stroke: var(--accent-color);
}

/* Feature Content */
.feature-title {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-description {
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
}

.feature-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.indicator-line {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  transition: width var(--transition-fast) ease;
}

.premium-feature-card:hover .indicator-line {
  width: 100%;
}

/* Animations */
@keyframes glow {
  0%,
  100% {
      opacity: 0.5;
  }
  50% {
      opacity: 1;
  }
}

.floating-dot {
  animation: float 3s infinite ease-in-out;
}

.dot-1 {
  animation-delay: 0s;
  top: 20%;
  left: 20%;
}

.dot-2 {
  animation-delay: 0.5s;
  top: 50%;
  right: 20%;
}

.dot-3 {
  animation-delay: 1s;
  bottom: 20%;
  left: 40%;
}

@keyframes float {
  0%,
  100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .premium-feature-card {
      flex-direction: column;
      text-align: center;
  }

  .icon-hexagon {
      margin: 0 auto 1rem;
  }
}

:root {
  --primary-color: #050c41;
  --secondary-color: #4a5568;
  --accent-color: #3182ce;
  --transition-speed: 0.4s;
  --border-radius: 16px;
}

.hosting-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
  overflow: hidden;
}

.hosting-visual-wrapper {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.visual-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(5, 12, 65, 0.1);
  transition: all var(--transition-speed) ease;
}

.visual-container:hover {
  transform: rotateX(-3deg) rotateY(3deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(5, 12, 65, 0.15);
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
          rgba(5, 12, 65, 0.05),
          rgba(5, 12, 65, 0.02));
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  background: white;
  box-shadow: 0 15px 30px rgba(5, 12, 65, 0.05);
  border: 2px solid #333;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
          transparent,
          var(--accent-color),
          transparent);
  transform: rotate(-45deg);
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(5, 12, 65, 0.1);
  box-shadow: 0 20px 40px rgba(5, 12, 65, 0.1);
}

.feature-icon-wrapper {
  flex-shrink: 0;
  margin-right: 1.5rem;
  position: relative;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(5, 12, 65, 0.05);
}

.feature-card:hover .feature-icon {
  background-color: rgba(5, 12, 65, 0.1);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
  transition: stroke var(--transition-speed) ease;
}

.feature-card:hover .feature-icon svg {
  stroke: var(--accent-color);
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
  transition: color var(--transition-speed) ease;
}

.feature-description {
  color: var(--secondary-color);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .feature-card {
      flex-direction: column;
      text-align: center;
  }

  .feature-icon-wrapper {
      margin-right: 0;
      margin-bottom: 1rem;
  }
}