* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #111;
  background: #fff;
}

.navbar {
  height: 76px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: white;
  background: #111;
}

nav { display: flex; align-items: center; gap: 30px; }

nav a {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

nav a:hover { color: #111; }

.nav-button, .cta {
  background: #111 !important;
  color: white !important;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 700 !important;
}

.menu-button { display: none; border: 0; background: transparent; font-size: 24px; }

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 24px 0;
  text-align: center;
}

.live { color: #707070; font-size: 14px; margin-bottom: 18px; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #27c46b; margin-right: 7px; }

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -4px;
  margin: 0 auto 22px;
  max-width: 1050px;
  font-weight: 800;
}

.subtitle {
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.subtitle strong {
  background: #e9e9e9;
  border-radius: 5px;
  padding: 2px 7px;
  color: #151515;
}

.description { color: #666; margin: 12px 0 0; font-size: 17px; }

.people {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 55px;
  margin: 10px auto 0;
  max-width: 920px;
  min-height: 620px;
}

.person { width: 43%; display: flex; justify-content: center; align-items: flex-end; }

.person img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  display: block;
}

.benefits {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0 34px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid #e5e5e5;
}

.benefit:last-child { border-right: 0; }
.icon { font-size: 28px; }
.benefit b { display: block; font-size: 14px; margin-bottom: 5px; }
.benefit span { display: block; color: #777; font-size: 12px; }

.info {
  max-width: 1050px;
  margin: 80px auto;
  padding: 0 24px;
}

.info h2, .contact h2 {
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -2px;
  margin: 0 0 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps > div {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 28px;
}

.steps span { color: #888; font-size: 12px; }
.steps h3 { margin: 35px 0 8px; }
.steps p, .about p { color: #666; line-height: 1.7; }

.contact {
  background: #f5f5f5;
  text-align: center;
  padding: 90px 24px;
}

.contact p { color: #666; margin-bottom: 30px; }

.cta { display: inline-block; text-decoration: none; }

footer {
  text-align: center;
  padding: 28px;
  color: #888;
  font-size: 12px;
}

@media (max-width: 760px) {
  .navbar { padding: 0 20px; }
  nav { display: none; }
  .menu-button { display: block; }
  .hero { padding-top: 30px; }
  h1 { letter-spacing: -2px; }
  .people { gap: 10px; min-height: 420px; }
  .person { width: 48%; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit { border-right: 0; padding: 18px; }
  .steps { grid-template-columns: 1fr; }
}
