.lp-top {
  background: linear-gradient(180deg, #e6ebf0 0%, #d8e0e7 100%);
  padding: 38px 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;
  color: #23313d;
}

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

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

.lp-top-card {
  border: 1px solid rgba(47, 58, 69, 0.12);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
}

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

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

.lp-top-cta-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, rgba(47, 58, 69, 0.96) 0%, rgba(66, 78, 91, 0.94) 100%);
  border: 1px solid rgba(194, 90, 51, 0.28);
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(37, 45, 54, 0.18);
  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: #f6f8fa;
  letter-spacing: 0.3px;
}

.lp-top-cta-sub {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(238, 242, 245, 0.82);
}

.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: linear-gradient(180deg, #c25a33 0%, #9e4728 100%);
  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: rgba(255, 255, 255, 0.12);
  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;
  }
}
