.landing-page {
  padding: 2rem 0;
}

.landing-hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.landing-hero h1 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #64748b;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.landing-hero p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-link:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.quick-link i {
  font-size: 1rem;
  opacity: 0.7;
}

.quick-link img {
  height: 18px;
  width: auto;
  border-radius: 3px;
}

.quick-link.primary {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

.quick-link.primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-row:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partners-row img {
  height: 28px;
  width: auto;
}
