﻿/* ── LANDING PAGES PAGE ── */

.lp-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.lp-hl-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.25s;
}
.lp-hl-item:hover { border-color: rgba(232,114,12,0.3); }

.lp-hl-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.lp-hl-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.75;
}

.lp-visual {
  position: relative;
}

.lp-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: block;
}

.lp-badge-group {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
}

.lp-badge {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-badge--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 860px) {
  .lp-img { height: 300px; }
  .lp-hl-num { font-size: 24px; min-width: 60px; }
}
