/* ==============================================
   Gradly Concept — Applications Page Styles
   Création d'applications mobiles
   ============================================== */

/* ==============================================
   Section "En cours de construction"
   ============================================== */

.gc-apps-wip {
  background: var(--primary);
}

.gc-apps-wip-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gc-apps-wip-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.15);
  animation: gc-pulse-icon 3s ease-in-out infinite;
}

.gc-apps-wip-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

@keyframes gc-pulse-icon {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.15);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
  }
}

.gc-apps-wip-content .gc-badge {
  display: inline-block;
  margin-bottom: 16px;
}

.gc-apps-wip-content h2 {
  margin-bottom: 20px;
}

.gc-apps-wip-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ==============================================
   Feature cards (3 colonnes)
   ============================================== */

.gc-apps-wip-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.gc-apps-wip-feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg, 16px);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.gc-apps-wip-feature:hover {
  border-color: rgba(249, 115, 22, 0.2);
  background: rgba(249, 115, 22, 0.03);
  transform: translateY(-4px);
}

.gc-apps-wip-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.08);
}

.gc-apps-wip-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.gc-apps-wip-feature h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 10px;
}

.gc-apps-wip-feature p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.gc-apps-wip-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent, #F97316);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: auto;
}

/* ==============================================
   CTA section
   ============================================== */

.gc-apps-wip-cta {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg, 16px);
  padding: 40px 32px;
}

.gc-apps-wip-cta-text {
  font-size: 1.125rem;
  color: var(--text-primary, #E5E7EB);
  font-weight: 500;
  margin-bottom: 24px;
}

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

@media (max-width: 1024px) {
  .gc-apps-wip-features {
    gap: 20px;
  }

  .gc-apps-wip-feature {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .gc-apps-wip-features {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .gc-apps-wip-icon {
    width: 64px;
    height: 64px;
  }

  .gc-apps-wip-icon svg {
    width: 28px;
    height: 28px;
  }

  .gc-apps-wip-desc {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .gc-apps-wip-cta {
    padding: 28px 20px;
  }

  .gc-apps-wip-cta-text {
    font-size: 1rem;
  }
}
