@import url("css2.css");

:root {
  --zl-primary: #3e43b5;
  --zl-primary-light: #baa7ed;
  --zl-gradient: linear-gradient(159.24deg, #3e43b5 -18.21%, #baa7ed 92.54%);
  --zl-bg: #f7f7f8;
  --zl-white: #ffffff;
  --zl-grey-1: #F7F7F8;
  --zl-grey-2: #EBEBEF;
  --zl-grey-3: #D1D1DB;
  --zl-grey-7: #55556D;
  --zl-grey-9: #282833;
  --zl-grey-10: #121217;
  --zl-radius: 12px;
  --zl-font: Manrope, sans-serif;
}

.zl-page {
  font-family: var(--zl-font);
  background: var(--zl-bg);
  min-height: 100vh;
  color: var(--zl-grey-10);
  max-width: 100%;
  overflow-x: hidden;
}

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

.zl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  background: var(--zl-white);
  border-bottom: 1px solid var(--zl-grey-2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.zl-topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--zl-grey-10);
}

.zl-topbar-brand img {
  height: 28px;
  width: auto;
}

.zl-topbar-brand span {
  font-size: 18px;
  font-weight: 800;
  color: var(--zl-grey-10);
}

.zl-topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.zl-topbar-nav a {
  font-family: var(--zl-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--zl-grey-7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zl-topbar-nav a:hover {
  color: var(--zl-primary);
}

.zl-topbar-nav a.zl-nav-active {
  color: var(--zl-primary);
}

.zl-container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.zl-hero-section {
  padding: 48px 0 32px;
}

.zl-page-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--zl-grey-10);
  margin: 0 0 12px 0;
}

@media (min-width: 768px) {
  .zl-page-title {
    font-size: 42px;
  }
}

.zl-page-title .zl-gradient-text {
  background: var(--zl-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.zl-page-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--zl-grey-7);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 600px;
}

.zl-divider {
  border: none;
  border-top: 1px solid var(--zl-grey-2);
  margin: 32px 0;
}

.zl-content-section {
  padding: 32px 0 48px;
}

.zl-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zl-primary);
  margin: 0 0 8px 0;
}

.zl-section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--zl-grey-10);
  margin: 0 0 20px 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .zl-section-heading {
    font-size: 26px;
  }
}

.zl-qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.zl-qa-item {
  background: var(--zl-white);
  border-radius: var(--zl-radius);
  border: 1px solid var(--zl-grey-2);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.zl-qa-item:hover {
  box-shadow: 0 4px 16px rgba(62, 67, 181, 0.08);
}

.zl-qa-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--zl-grey-10);
  margin: 0;
  padding: 20px 24px 16px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .zl-qa-question {
    font-size: 16px;
  }
}

.zl-qa-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--zl-gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.zl-qa-answer {
  font-size: 14px;
  font-weight: 400;
  color: var(--zl-grey-7);
  line-height: 1.7;
  margin: 0;
  padding: 0 24px 20px 56px;
}

@media (min-width: 768px) {
  .zl-qa-answer {
    font-size: 15px;
  }
}

.zl-qa-answer a {
  color: var(--zl-primary);
  text-decoration: underline;
  font-weight: 600;
}

.zl-qa-answer a:hover {
  color: var(--zl-primary-light);
}

.zl-about-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zl-about-card {
  background: var(--zl-white);
  border-radius: var(--zl-radius);
  border: 1px solid var(--zl-grey-2);
  padding: 28px 28px 24px;
}

@media (min-width: 768px) {
  .zl-about-card {
    padding: 36px 40px 32px;
  }
}

.zl-about-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--zl-grey-10);
  margin: 0 0 14px 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .zl-about-card h2 {
    font-size: 22px;
  }
}

.zl-about-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--zl-grey-7);
  line-height: 1.75;
  margin: 0 0 12px 0;
}

.zl-about-card p:last-child {
  margin-bottom: 0;
}

.zl-about-card a {
  color: var(--zl-primary);
  text-decoration: underline;
  font-weight: 600;
}

.zl-about-card a:hover {
  color: var(--zl-primary-light);
}

.zl-about-highlight {
  background: linear-gradient(159.24deg, #ebeeff -18.21%, #f5ebff 92.54%);
  border: 1px solid rgba(62, 67, 181, 0.12);
}

.zl-stats-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0;
}

@media (min-width: 640px) {
  .zl-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.zl-stat-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--zl-grey-1);
  border: 1px solid var(--zl-grey-2);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 140px;
  flex: 1 1 140px;
}

.zl-stat-chip-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--zl-primary);
  line-height: 1.2;
}

.zl-stat-chip-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--zl-grey-7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zl-feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zl-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--zl-grey-7);
  line-height: 1.6;
}

.zl-feature-item::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--zl-gradient);
  margin-top: 2px;
  background-image: var(--zl-gradient);
}

.zl-feature-item strong {
  color: var(--zl-grey-10);
  font-weight: 700;
}

.zl-inline-link {
  color: var(--zl-primary);
  font-weight: 600;
  text-decoration: underline;
  font-family: var(--zl-font);
}

.zl-inline-link:hover {
  color: var(--zl-primary-light);
}

.zl-cta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--zl-grey-2);
}

.zl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(rgb(62, 67, 181), rgb(186, 167, 237));
  color: #fff;
  border-radius: 10px;
  font-family: var(--zl-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.zl-btn-primary:hover {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}

.zl-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--zl-white);
  color: var(--zl-primary);
  border-radius: 10px;
  border: 1.5px solid var(--zl-grey-3);
  font-family: var(--zl-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.zl-btn-secondary:hover {
  border-color: var(--zl-primary);
  color: var(--zl-primary);
  text-decoration: none;
}

.zl-footer {
  background: var(--zl-white);
  border-top: 1px solid var(--zl-grey-2);
  padding: 28px 24px;
  margin-top: 48px;
}

.zl-footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.zl-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zl-footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--zl-grey-7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.zl-footer-links a:hover {
  color: var(--zl-primary);
}

.zl-footer-copy {
  font-size: 12px;
  color: var(--zl-grey-7);
  font-weight: 500;
}

.zl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.zl-breadcrumb a {
  font-size: 13px;
  font-weight: 600;
  color: var(--zl-grey-7);
  text-decoration: none;
}

.zl-breadcrumb a:hover {
  color: var(--zl-primary);
}

.zl-breadcrumb-sep {
  font-size: 13px;
  color: var(--zl-grey-3);
}

.zl-breadcrumb-current {
  font-size: 13px;
  font-weight: 600;
  color: var(--zl-primary);
}

.zl-notice-bar {
  background: #fff9e5;
  border: 1px solid #f5d87e;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  color: #504314;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
}

.zl-notice-bar a {
  color: var(--zl-primary);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .zl-topbar-nav {
    gap: 14px;
  }

  .zl-topbar-nav a {
    font-size: 13px;
  }

  .zl-page-title {
    font-size: 26px;
  }

  .zl-qa-answer {
    padding-left: 24px;
  }

  .zl-about-card {
    padding: 20px 18px;
  }

  .zl-cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .zl-btn-primary,
  .zl-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .zl-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}