.lp-top {
  background: #fff;
  padding: 32px 0;
}

.lp-top-head {
  margin-bottom: 16px;
}

.lp-top-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.lp-top-head p {
  margin: 0;
  color: #475569;
}

.lp-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lp-top-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  background: #f8fafc;
}

.lp-top-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.lp-top-card p {
  margin: 0;
  color: #334155;
}

.lp-top-cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
  padding: 14px 16px;
}

.lp-top-cta-copy {
  min-width: 0;
}

.lp-top-cta-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 0.3px;
}

.lp-top-cta-sub {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 800;
  color: #666;
}

.lp-top-call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: #73cf11;
  box-shadow: none;
  flex: 0 0 auto;
}

.lp-top-call-text {
  font-size: 15px;
  letter-spacing: 0.2px;
}

.lp-top-call-ic {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #73cf11;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lp-top {
    padding: 48px 0;
  }

  .lp-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lp-top-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .lp-top-cta-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 14px;
  }

  .lp-top-cta-title {
    font-size: 16px;
  }

  .lp-top-cta-sub {
    font-size: 14px;
  }

  .lp-top-call-btn {
    min-width: 150px;
  }
}

@media (max-width: 420px) {
  .lp-top-cta-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .lp-top-call-btn {
    width: 100%;
    min-width: 0;
  }
}
