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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 120px 0 100px;
  background: #f7f7f7;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.08;
  margin: 0;
}

.line-1 {
  display: block;
  font-weight: 600;
}

.line-2 {
  display: block;
  font-weight: 400;
}

.subtext {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

.highlight {
  color: #e11d48;
}

.link {
  display: inline-block;
  margin-top: 28px;
  font-size: 15px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.phones {
  position: relative;
  width: 380px;
  height: 460px;
  flex-shrink: 0;
}

.phone {
  position: absolute;
  width: 200px;
  height: 400px;
  border-radius: 28px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  overflow: hidden;
}

.phone.back {
  left: 0;
  top: 40px;
  background: #f1f1f1;
}

.phone.middle {
  left: 70px;
  top: 0;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phone.front {
  right: 0;
  top: 24px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.phone-header {
  padding: 12px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-header span {
  font-size: 12px;
  color: #222;
}

.logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #e11d48;
  flex-shrink: 0;
}

.logo.filled {
  background: #e11d48;
  color: #fff;
}

.phone-content {
  padding: 10px;
}

.block {
  background: #e9e9e9;
  border-radius: 12px;
  margin-bottom: 8px;
}

.square {
  aspect-ratio: 1 / 1;
}

.video {
  aspect-ratio: 16 / 9;
}

.portrait {
  aspect-ratio: 4 / 5;
}

.line {
  height: 6px;
  background: #d9d9d9;
  border-radius: 4px;
  margin-bottom: 6px;
}

.line.short {
  width: 60%;
}

.line.medium {
  width: 72%;
}

.row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox {
  width: 12px;
  height: 12px;
  border: 1px solid #e11d48;
  border-radius: 3px;
  flex-shrink: 0;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(225, 29, 72, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 60px;
  }

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

  .hero-text h1 {
    font-size: 48px;
  }

  .phones {
    width: 320px;
    height: 420px;
  }

  .phone {
    width: 170px;
    height: 340px;
  }

  .phone.middle {
    left: 60px;
  }
}