.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin-top: 0 !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.95) 100%),
    url('../img/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 207, 6, 0.12);
  border: 1px solid rgba(215, 207, 6, 0.3);
  color: #D7CF06;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.7s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D7CF06;
  animation: blink 1.5s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0d1e3d;
  margin-bottom: 0.4rem;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}

.hero-title .accent {
  background: linear-gradient(135deg, #296EB5, #0363A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #296EB5;
  font-weight: 600;
  margin-bottom: 0.8rem;
  animation: fadeSlideDown 0.8s 0.15s ease both;
}

.hero-desc {
  font-size: 1rem;
  color: #495057;
  max-width: 520px;
  line-height: 1.75;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}

.server-card {
  background: rgba(0, 7, 45, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(41, 110, 181, 0.3);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 7, 45, 0.15);
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 207, 6, 0.5), transparent);
}

.server-rack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.server-unit {
  background: rgba(0, 7, 45, 0.6);
  border: 1px solid rgba(41, 110, 181, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.server-unit:hover {
  border-color: rgba(215, 207, 6, 0.4);
  background: rgba(0, 7, 45, 0.8);
}

.server-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.server-led.green {
  background: #00BC29;
  animation: blink 2s ease infinite;
}

.server-led.blue {
  background: #0363A7;
  animation: blink 2.5s ease infinite;
}

.server-led.yellow {
  background: #D7CF06;
  animation: blink 3s ease infinite;
}

.server-info {
  flex: 1;
}

.server-name {
  font-size: 0.78rem;
  color: #c4dadc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.server-stat {
  font-size: 0.7rem;
  color: rgba(196, 218, 220, 0.5);
}

.server-bar-wrap {
  width: 60px;
}

.server-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.server-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #296EB5, #D7CF06);
  animation: barLoad 2s ease-out both;
}

@keyframes barLoad {
  from {
    width: 0;
  }
}

.uptime-badge {
  background: rgba(0, 188, 41, 0.12);
  border: 1px solid rgba(0, 188, 41, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #00BC29;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
}

.uptime-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00BC29;
  animation: blink 1.2s ease infinite;
}

.plans-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #296EB5;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #296EB5);
}

.section-tag::after {
  transform: scaleX(-1);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #0d1e3d !important;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section-subtitle {
  color: #495057;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(41, 110, 181, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 7, 45, 0.04);
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(41, 110, 181, 0.2), transparent);
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(41, 110, 181, 0.4);
  box-shadow: 0 15px 40px rgba(0, 7, 45, 0.08);
}

.plan-card:hover::before {
  background: linear-gradient(90deg, transparent, #296EB5, transparent);
}

.plan-card.featured {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(41, 110, 181, 0.05));
  border-color: rgba(41, 110, 181, 0.35);
  box-shadow: 0 15px 35px rgba(41, 110, 181, 0.1);
}

.plan-card.featured::before {
  background: linear-gradient(90deg, transparent, #296EB5, transparent);
  height: 2px;
}

.plan-card.featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 45px rgba(41, 110, 181, 0.15);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D7CF06, #c4b800);
  color: #00072d;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(41, 110, 181, 0.12);
  border: 1px solid rgba(41, 110, 181, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #296EB5;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.plan-card.featured .plan-icon {
  background: rgba(215, 207, 6, 0.12);
  border-color: rgba(215, 207, 6, 0.25);
  color: #D7CF06;
}

.plan-card:hover .plan-icon {
  transform: scale(1.1) rotate(5deg);
}

.plan-name-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(13, 30, 61, 0.5);
  margin-bottom: 0.25rem;
}

.plan-name-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0d1e3d !important;
  margin-bottom: 1.25rem;
}

.plan-card.featured .plan-name-text {
  color: #296EB5 !important;
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(41, 110, 181, 0.1);
}

.plan-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #296EB5;
  line-height: 1;
}

.plan-price-currency {
  font-size: 1rem;
  color: rgba(13, 30, 61, 0.6);
  font-weight: 500;
}

.plan-price-period {
  font-size: 0.78rem;
  color: rgba(13, 30, 61, 0.5);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(41, 110, 181, 0.1);
  font-size: 0.88rem;
  color: #495057;
  line-height: 1.4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: #00BC29;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(41, 110, 181, 0.4);
  color: #296EB5 !important;
  background: rgba(41, 110, 181, 0.05);
  text-decoration: none;
}

.btn-plan:hover {
  background: rgba(41, 110, 181, 0.15);
  border-color: rgba(41, 110, 181, 0.7);
  transform: translateY(-2px);
}

.btn-plan-featured {
  background: linear-gradient(135deg, #D7CF06, #c4b800);
  color: #00072d !important;
  border: none;
}

.btn-plan-featured:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* ---- FEATURES SECTION ---- */
.features-section {
  padding: 5rem 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(28, 59, 114, 0.06) 50%, transparent);
  pointer-events: none;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(41, 110, 181, 0.15);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 7, 45, 0.04);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #296EB5, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: #296EB5;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 7, 45, 0.08);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41, 110, 181, 0.15), rgba(41, 110, 181, 0.05));
  border: 1px solid rgba(41, 110, 181, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #296EB5;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(41, 110, 181, 0.15), rgba(41, 110, 181, 0.05));
  border-color: #296EB5;
  color: #296EB5;
  transform: rotate(8deg) scale(1.1);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1e3d !important;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: #495057;
  line-height: 1.65;
}

/* Feature list items */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list li {
  font-size: 0.82rem;
  color: #495057;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #296EB5;
  flex-shrink: 0;
}


/* ---- CTA SECTION ---- */
.cta-section {
  padding: 5rem 0;
}

.cta-block {
  background: linear-gradient(135deg, rgba(28, 59, 114, 0.6), rgba(41, 110, 181, 0.3));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(215, 207, 6, 0.2);
  border-radius: 32px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D7CF06, transparent);
}

.cta-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(215, 207, 6, 0.06), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-desc {
  color: rgba(196, 218, 220, 0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
.site-footer {
  background: rgba(0, 7, 45, 0.95);
  border-top: 1px solid rgba(41, 110, 181, 0.15);
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer-brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-brand-text span {
  color: #D7CF06;
}

.footer-desc {
  color: rgba(196, 218, 220, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(41, 110, 181, 0.1);
  border: 1px solid rgba(41, 110, 181, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(196, 218, 220, 0.6) !important;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(215, 207, 6, 0.1);
  border-color: rgba(215, 207, 6, 0.3);
  color: #D7CF06 !important;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(196, 218, 220, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(196, 218, 220, 0.6) !important;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(41, 110, 181, 0.4);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.footer-links a:hover {
  color: #D7CF06 !important;
}

.footer-links a:hover::before {
  background: #D7CF06;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(196, 218, 220, 0.55);
}

.footer-contact-item i {
  color: #296EB5;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(41, 110, 181, 0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(196, 218, 220, 0.3);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- HOME LAYOUT OVERRIDE ---- */
/* On home, the page wrapper doesn't need vh-100 */
.home-page-wrap {
  min-height: 0 !important;
  padding: 0 !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .about-float-stat-1,
  .about-float-stat-2 {
    display: none;
  }

  .cta-block {
    padding: 3rem 1.5rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(196, 218, 220, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .hero-btns {
    justify-content: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin: 0 auto 1.5rem;
  }

  .hero-badge {
    margin: 0 auto 1.5rem;
  }

  .server-card {
    margin-top: 3rem;
  }

  .float-card {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}