.launch-segments-section {
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #e8e9ec;
  background: #f7f8f6;
}

.launch-segments-heading {
  max-width: 720px;
}

.launch-segments-heading > span {
  color: #7b8490;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.launch-segments-heading h2 {
  margin: 12px 0 10px;
  color: #202530;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
}

.launch-segments-heading p {
  margin: 0;
  color: #697281;
  font-size: 15px;
  line-height: 1.75;
}

.launch-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.launch-segment-card {
  display: flex;
  min-height: 230px;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e1e4e8;
  border-radius: 22px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.launch-segment-card:hover {
  transform: translateY(-3px);
  border-color: #cfd4da;
  box-shadow: 0 16px 40px rgba(32, 37, 48, .08);
}

.launch-segment-card > span {
  color: #9aa1ab;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.launch-segment-card h3 {
  margin: 0 0 12px;
  color: #202530;
  font-size: 23px;
}

.launch-segment-card p {
  margin: 0;
  color: #6b7481;
  font-size: 14px;
  line-height: 1.7;
}

.launch-segment-card strong {
  display: inline-block;
  margin-top: 24px;
  color: #202530;
  font-size: 13px;
}

.launch-segment-high-value {
  background: linear-gradient(145deg, #fff, #f0f8f2);
}

.launch-segment-beginner {
  background: linear-gradient(145deg, #fff, #f3f4fb);
}

.launch-segment-week {
  background: linear-gradient(145deg, #fff, #faf4ed);
}

@media (max-width: 900px) {
  .launch-segments-grid {
    grid-template-columns: 1fr;
  }

  .launch-segment-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .launch-segments-section {
    padding: 50px 18px;
  }

  .launch-segment-card {
    padding: 20px;
    border-radius: 18px;
  }
}
