.landing-uni {
  position: relative;
  background-image:
    url("/images/patterns/copylms-synergy-pattern.svg"),
    linear-gradient(180deg, #071426 0%, #0a1628 100%);
  background-repeat: repeat, no-repeat;
  background-size: 360px 360px, cover;
}

.landing-uni::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.landing-uni > * {
  position: relative;
  z-index: 1;
}

.landing-uni .hero {
  padding: 120px 0 140px;
}

.landing-uni .hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.landing-uni .hero-inner h1 {
  margin-bottom: 16px;
}

.landing-uni .hero-subtitle {
  max-width: 700px;
  margin: 10px auto 12px;
}

.landing-uni .hero-note-center {
  margin: 0 auto 24px;
  max-width: 700px;
}

.landing-uni .hero-actions-center {
  display: flex;
  justify-content: center;
}

.gradient-synergy {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #ffffff 0%,   
    #e4002b 100%  
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gradient-synergy-title {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #4ea1ff,
    #38e68f,
    #ffd33d
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.landing-uni .faq-question {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

.landing-uni .faq-question:hover,
.landing-uni .faq-question:focus,
.landing-uni .faq-question:focus-visible,
.landing-uni .faq-question:active {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 32px;
  height: 32px;
  display: block;
}

.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 14px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.18s ease-out, color 0.18s ease-out;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  font-size: 13px;
  color: var(--muted);
  transition: max-height 0.22s ease-out, padding 0.22s ease-out;
}

.faq-answer p {
  margin: 0 0 8px;
}

.faq-answer ol {
  padding-left: 18px;
  margin: 6px 0 10px;
}

.faq-item.open .faq-answer {
  padding: 0 12px 10px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--muted);
}

.faq-question:hover {
  background: rgba(15, 23, 42, 0.95);
}
