body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #0a1121;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 80vh;
  gap: 60px;
}

.main-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 55%;
  min-width: 320px;
  max-width: 600px;
  padding: 40px 0;
}

.side-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 300px;
  max-width: 400px;
  margin-top: 40px;
}

header {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.logo-box {
  display: inline-block;
  border: none;
  padding: 10px 40px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: none;
  margin-bottom: 0;
}
.logo-main {
  color: #fff;
}
.logo-accent {
  color: #3b82f6;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-align: center;
}
.subtitle {
  font-size: 1.2rem;
  color: #b3b8c5;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 16px 40px;
  border: none;
  color: #fff;
  background: #3b82f6;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}
.btn:hover {
  background: #2563eb;
  color: #fff;
}

.buttons .btn:last-child {
  background: #1e2533;
  color: #fff;
  margin-left: 10px;
}
.buttons .btn:last-child:hover {
  background: #232a3a;
}

.support {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}
.support-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}
.support-link i {
  margin-left: 5px;
}

.side-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features li {
  display: flex;
  align-items: flex-start;
  font-size: 1.08rem;
  margin-bottom: 32px;
  line-height: 1.35;
  max-width: 420px;
}
.features i {
  color: #3b82f6;
  font-size: 2em;
  margin-right: 20px;
  min-width: 36px;
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-text {
  display: block;
  max-width: 370px;
  word-break: break-word;
  color: #b3b8c5;
}
.accent {
  color: #3b82f6;
  font-weight: 700;
}

footer {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  color: #b3b8c5;
  font-size: 0.95rem;
  padding-bottom: 20px;
}

/* Hero section */
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  margin-bottom: 18px;
}
.hero-highlight {
  color: #3b82f6;
}
.hero-subtitle {
  color: #b3b8c5;
  font-size: 1.18rem;
  font-weight: 500;
  max-width: 520px;
  text-align: left;
  margin-bottom: 36px;
}

/* Stats block */
.stats-block {
  background: #1e2533;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 2px 16px rgba(59,130,246,0.10);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.stats-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stats-item i {
  font-size: 2.2rem;
  color: #3b82f6;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3b82f6;
}
.stat-label {
  color: #b3b8c5;
  font-size: 1.1rem;
}
.stats-support {
  border-top: 1px solid #232a3a;
  width: 100%;
  margin: 22px 0 0 0;
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stats-support i {
  font-size: 1.5rem;
  color: #3b82f6;
}
.stats-support .support-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .content-flex {
    gap: 32px;
  }
  .main-block, .side-block {
    min-width: 0;
    max-width: 100%;
    padding: 20px 0;
  }
  .side-block {
    max-width: 400px;
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .content-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-height: unset;
  }
  .main-block, .side-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 12px 0;
  }
  .side-block {
    align-items: center;
    margin-top: 0;
    max-width: 95vw;
  }
  .stats-block {
    padding: 22px 10px;
    gap: 16px;
    border-radius: 16px;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .logo-box {
    font-size: 1.1rem;
    padding: 6px 8px;
  }
  h1 {
    font-size: 1.1rem;
  }
  .subtitle {
    font-size: 0.95rem;
  }
  .btn {
    width: 100%;
    min-width: 0;
    padding: 12px 0;
    font-size: 1rem;
  }
  .buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
    align-items: stretch;
  }
  .side-block > div {
    padding: 10px 8px;
    gap: 10px;
    border-radius: 12px !important;
    max-width: 95vw;
    margin: 0 auto;
  }
  .side-block i {
    font-size: 1.3rem !important;
    min-width: 24px !important;
  }
  .side-block .stat-number,
  .side-block > div > div > div:first-child {
    font-size: 1.2rem !important;
  }
  .side-block > div > div > div:last-child {
    font-size: 0.95rem !important;
  }
  .main-block {
    padding-bottom: 0;
  }
  .container {
    padding: 0 2px;
  }
  .features li {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }
  .stats-block {
    padding: 10px 6px;
    gap: 10px;
    border-radius: 12px !important;
    max-width: 95vw;
    margin: 0 auto;
  }
  .stats-item i {
    font-size: 1.2rem !important;
    min-width: 22px !important;
  }
  .stat-number {
    font-size: 1.1rem !important;
  }
  .stat-label {
    font-size: 0.93rem !important;
  }
  .stats-support {
    padding-top: 8px;
    margin-top: 8px;
    font-size: 0.93rem;
    gap: 8px;
  }
} 