/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

/* NAV */
.nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo img {
  height: 50px;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO */
.hero {
  background: linear-gradient(
    180deg,
    #ecfeff,
    #f8fafc
  );
  padding: 96px 24px 72px;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  color: #334155;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.point {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #0ea5e9;
  color: #ffffff;
}

.btn.primary:hover {
  background: #0284c7;
}

.trust {
  margin-top: 12px;
  font-size: 14px;
  color: #475569;
}

/* CONTENT */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.block {
  margin-bottom: 40px;
}

.block h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.block ul {
  list-style: disc;
  padding-left: 20px;
}

.block li {
  margin-bottom: 8px;
  color: #334155;
}

/* FOOTER */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 24px;
  text-align: center;
  font-size: 14px;
}

.footer a {
  color: #0f172a;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer span {
  margin: 0 10px;
  color: #94a3b8;
}


/* MOBILE OPTIMIZATIONS */
@media (max-width: 640px) {

  .hero {
    padding: 64px 16px 48px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-points {
    gap: 10px;
  }

  .point {
    font-size: 13px;
    padding: 8px 14px;
  }

  .btn.primary {
    width: 100%;
    max-width: 320px;
  }
}
