/* MAIN SECTION */
.gm-hero {
  position: relative;
  overflow: hidden;
  background: #0b0f1a;
}

/* ANIMATED BACKGROUND */
.gm-hero-bg {
  position: relative;
  background: linear-gradient(270deg, #0b0f1a, #111827, #0b0f1a);
  background-size: 400% 400%;
  animation: gmBgMove 10s ease infinite;
}

@keyframes gmBgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CONTAINER */
.gm-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* GRID */
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.gm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #2a2f3a;
  padding: 6px 10px;
  border-radius: 50px;
  font-size: 12px;
  color: #aaa;
}

.gm-dot {
  width: 6px;
  height: 6px;
  background: #00ffcc;
  border-radius: 50%;
}

.gm-title {
  font-size: 52px;
  font-weight: 800;
  margin-top: 15px;
  color: #fff;
}

.gm-gradient-text {
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  -webkit-background-clip: text;
  color: transparent;
}

.gm-desc {
  margin-top: 15px;
  color: #9ca3af;
  font-size: 16px;
}

/* BUTTONS */
.gm-btn-group {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gm-btn-primary {
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.gm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px #00ffcc;
}

.gm-btn-outline {
  border: 1px solid #2a2f3a;
  padding: 10px 18px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.gm-btn-outline:hover {
  background: rgba(255,255,255,0.05);
}

/* STATS */
.gm-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  margin-top: 30px;
}

.gm-stat-box {
  background: rgba(255,255,255,0.03);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.gm-stat-value {
  font-size: 26px;
  font-weight: bold;
  color: #00ffcc;
}

.gm-stat-value.secondary { color: #00aaff; }
.gm-stat-value.accent { color: #ffcc00; }

.gm-stat-label {
  font-size: 12px;
  color: #888;
}

/* RIGHT IMAGE */
.gm-image-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.gm-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,200,0.2);
}

/* FLOATING BOX */
.gm-floating-box {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(20,25,40,0.9);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #2a2f3a;
}

.gm-small-text {
  font-size: 11px;
  color: #aaa;
}

.gm-strong-text {
  font-weight: bold;
  color: #00ffcc;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gm-grid {
    grid-template-columns: 1fr;
  }

  .gm-title {
    font-size: 36px;
  }

  .gm-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .gm-title {
    font-size: 28px;
  }

  .gm-stats {
    grid-template-columns: 1fr;
  }
}