/* =============================================== */
/* GhostNav Page Specific Styles                   */
/* Extends style1.css for GhostNav landing page    */
/* =============================================== */

/* Hero Section - GhostNav specific */
.ghostnav-cover {
  background: linear-gradient(135deg, #060608 0%, #0a1628 50%, #060608 100%);
}

.ghostnav-cover .cover-wrapper-content {
  justify-content: flex-start;
  align-items: flex-end;
}

.ghostnav-hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.ghostnav-label {
  font-family: "Manrope", Helvetica;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.ghostnav-title {
  font-size: clamp(60px, 10vw, 120px) !important;
  line-height: 1 !important;
  margin-bottom: 20px;
}

.ghostnav-version {
  color: #51b04c;
}

/* Risks Grid */
.ghostnav-risks-section {
  padding-bottom: 60px;
}

.ghostnav-risks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 30px;
}

.ghostnav-risk-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghostnav-risk-card .text-wrapper-4 {
  color: #5b5b63;
}

.ghostnav-risk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(81, 176, 76, 0.1);
}

.ghostnav-risk-card .text-wrapper-3 {
  color: #51b04c;
}

/* Solution Section */
.ghostnav-solution {
  background-color: #0a0a0a;
}

.ghostnav-solution .process-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Benefits Section */
.ghostnav-benefits {
  background-color: #060606;
}

/* =============================================== */
/* Responsive Styles                               */
/* =============================================== */

@media (max-width: 1200px) {
  .ghostnav-risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ghostnav-solution .process-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ghostnav-cover {
    height: auto;
    min-height: 600px;
    padding-top: 120px;
  }

  .ghostnav-cover .cover-wrapper-content {
    padding: 0 20px 60px 20px;
  }

  .ghostnav-risks-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .ghostnav-title {
    font-size: 48px !important;
  }

  .ghostnav-label {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ghostnav-title {
    font-size: 36px !important;
  }

  .ghostnav-risk-card {
    padding: 20px;
  }
}
