*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #374151;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
}

h1, h2, h3, p {
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-right: 2rem;
  text-decoration: none;
}
.nav-logo:hover {
  color: #fff;
}

.btn-primary-sl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  border: none;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}
.btn-primary-sl:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  color: #fff;
}

.landing-nav {
  background: linear-gradient(135deg, #1E3A5F 0%, #2D5F8B 100%);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.landing-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.landing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.landing-hero {
  background: linear-gradient(160deg, #1E3A5F 0%, #2D5F8B 50%, #2563EB 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.landing-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.landing-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.landing-hero-cta {
  margin-bottom: 3rem;
}
.landing-hero-cta .btn-primary-sl {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  margin-top: 0;
}

.landing-hero-metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.landing-metric {
  text-align: center;
}

.landing-metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.landing-metric-label {
  font-size: 0.8rem;
  color: #fff;
  margin-top: 0.2rem;
}

.landing-section {
  padding: 5rem 0;
}

.landing-section-alt {
  background: #F9FAFB;
}

.landing-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 0.5rem;
}

.landing-section-sub {
  font-size: 1rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid #E5E7EB;
  transition: all 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.feature-icon.blue {
  background: #DBEAFE;
}
.feature-icon.orange {
  background: #FEF3C7;
}
.feature-icon.green {
  background: #D1FAE5;
}
.feature-icon.purple {
  background: #EDE9FE;
}
.feature-icon.red {
  background: #FEE2E2;
}
.feature-icon.navy {
  background: #b0c7e6;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid #E5E7EB;
  text-align: center;
  flex: 1;
  max-width: 280px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: #D1D5DB;
  margin-top: 3rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 0;
}

.landing-cta-section {
  padding: 5rem 0;
}

.landing-cta-card {
  background: linear-gradient(135deg, #1E3A5F 0%, #2D5F8B 100%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.landing-cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.landing-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
}

.landing-footer {
  background: #1F2937;
  padding: 1.5rem 0;
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-footer-text {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-bottom: 0;
}

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  background: linear-gradient(160deg, #F9FAFB 0%, #EFF6FF 100%);
  padding: 2rem 1rem;
}

@media (max-width: 768px) {
  .landing-hero {
    padding: 3rem 1rem 2.5rem;
  }
  .landing-hero-title {
    font-size: 1.8rem;
  }
  .landing-hero-sub {
    font-size: 0.95rem;
  }
  .landing-hero-metrics {
    gap: 1.5rem;
  }
  .landing-metric-value {
    font-size: 1.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps-row {
    flex-direction: column;
    align-items: center;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0;
  }
  .landing-section {
    padding: 3rem 0;
  }
  .landing-cta-card {
    padding: 2.5rem 1.5rem;
  }
  .landing-cta-title {
    font-size: 1.4rem;
  }
  .landing-footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/*# sourceMappingURL=page-landing-min.output.css.map */
