:root {
  --primary-color: #e11638;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../../assets/img/background/axiom-group-background.png') center/cover no-repeat fixed;
  background-color: #000;
  color: #f9fafb;
  font-family: Inter, sans-serif;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
}

.mega-panel {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.mega-panel.active {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
}

#mega-container {
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
}

#mega-container.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.glass {
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body .glass {
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#mobile-menu {
  background: #000 !important;
}

main section img[src*="assets/img/hero/"],
main section img[src*="/assets/img/hero/"] {
  display: none !important;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #e11638;
  box-shadow: 0 0 0 4px rgba(225, 22, 56, 0.1);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

select.form-input option {
  background-color: #030712;
  color: white;
}

.prose h2 {
  font-size: 1.5rem;
  font-family: Outfit, sans-serif;
  color: white;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.prose p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.prose ul {
  list-style: disc;
  list-style-position: inside;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  display: grid;
  gap: 0.5rem;
}
