* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fb;
  color: #1a1a2e;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  color: #f0b429;
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.subtitle {
  font-size: 18px;
  color: #5c5c7a;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1f4e79;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cta-button:hover {
  background-color: #163a5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 78, 121, 0.2);
}

.cta-button .arrow {
  transition: transform 0.2s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

.steps {
  text-align: center;
}

.steps-label {
  font-size: 14px;
  color: #7a7a8c;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps-list li {
  font-size: 16px;
  color: #5c5c7a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.steps-list li::before {
  content: "•";
  color: #f0b429;
  font-size: 18px;
}

footer {
  padding: 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-text {
  font-size: 14px;
  color: #9a9aac;
}

@media (max-width: 640px) {
  header {
    padding: 20px 24px;
  }

  h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .subtitle br {
    display: none;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  main {
    padding: 32px 20px;
  }
}
