/* Landing Page */
.landing {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex;
  flex-direction: column;
}

.landing-header {
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 24px;
  font-weight: 800;
}

.landing-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.landing-badge {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.landing-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 80px;
  color: white;
}

.landing-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
}

.landing-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.landing-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-stat .num {
  font-size: 36px;
  font-weight: 800;
}

.landing-stat .label {
  font-size: 13px;
  opacity: 0.8;
}

.landing-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  width: 100%;
}

.panel-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.panel-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

.panel-card-icon {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.panel-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.panel-card p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.5;
}

.panel-card .btn {
  background: white;
  color: var(--primary-dark);
  width: 100%;
}

.panel-card .btn:hover {
  background: #f0f0f0;
}

.landing-footer {
  padding: 24px 48px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.landing-features {
  background: white;
  padding: 80px 48px;
}

.landing-features h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 24px;
}

.feature-item .icon {
  width: 56px;
  height: 56px;
  background: #d8f3dc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .landing-panels { grid-template-columns: 1fr; max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-header { padding: 20px 24px; }
}

@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
  .landing-stats { gap: 24px; }
}
