.landing-body {
  background-color: #f8fafc;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background-color: transparent;
}

.landing-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.landing-nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
}
.landing-nav-links a:hover {
  color: var(--text-main);
}

.landing-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-section {
  display: flex;
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-tag {
  background-color: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.partners-section {
  background-color: #f1f5f9;
  padding: 4rem;
  text-align: center;
}

.partners-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.partners-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-box {
  width: 200px;
  height: 100px;
  background: #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: bold;
}

.features-section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.features-subtitle {
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: left;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: #e0f2fe;
  color: #0284c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.landing-footer {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  background: transparent;
  align-items: center;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 1.5rem;
}
