/* Landing Page — lp.css */

.lp-page {
  padding-top: 22px;
  padding-bottom: 80px;
}

/* Hero */
.lp-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0 2rem;
  flex-wrap: wrap;
}
.lp-hero-text h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5rem;
}
.lp-hero-text p {
  color: #666;
  font-size: .95rem;
  margin: 0;
}
.lp-hero-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Buttons */
.lp-btn-primary,
.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1.4rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.lp-btn-primary { background: #1a1a1a; color: #fff; }
.lp-btn-primary:hover { opacity: .85; color: #fff; }
.lp-btn-secondary { background: #f2f2f2; color: #1a1a1a; }
.lp-btn-secondary:hover { background: #e5e5e5; color: #1a1a1a; }

/* Trust bar */
.lp-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  padding: .9rem 1.2rem;
  background: #f7f7f7;
  border-radius: 10px;
  font-size: .83rem;
  color: #444;
  margin-bottom: 2.5rem;
}
.lp-trust-bar i { color: #1a1a1a; margin-right: .3rem; }

/* Sections */
.lp-section { padding: 2.5rem 0; border-top: 1px solid #ebebeb; }
.lp-section--alt { background: #fafafa; border-radius: 12px; padding: 2.5rem 2rem; margin: 0 -1rem; }
.lp-section-head { margin-bottom: 1.75rem; }
.lp-section-head h2 { font-size: 1.45rem; font-weight: 700; margin: 0 0 .4rem; }
.lp-section-head p { color: #666; font-size: .9rem; margin: 0; }
.lp-count { color: #aaa; font-size: .75em; font-weight: 500; }
.lp-empty { color: #888; }

/* Price table */
.lp-table-wrap { overflow-x: auto; }
.lp-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin-bottom: 1rem;
}
.lp-price-table th {
  background: #1a1a1a;
  color: #fff;
  padding: .7rem 1rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.lp-price-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid #ebebeb;
  vertical-align: middle;
}
.lp-price-table tr:last-child td { border-bottom: none; }
.lp-price-table tr:hover td { background: #f5f5f5; }
.lp-price-cell { font-weight: 700; color: #1a1a1a; white-space: nowrap; }

.lp-badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  background: #ebebeb;
  color: #444;
  white-space: nowrap;
}
.lp-badge--green { background: #e6f4ea; color: #1e6b37; }

.lp-table-note {
  font-size: .82rem;
  color: #888;
  margin-top: .5rem;
}
.lp-table-note i { margin-right: .3rem; }

/* Two-column layout */
.lp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.lp-two-col h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .75rem; }

/* Checklists */
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.lp-checklist li { font-size: .88rem; padding-left: 1.4rem; position: relative; color: #444; }
.lp-checklist li::before { content: '✓'; position: absolute; left: 0; color: #1a1a1a; font-weight: 700; }
.lp-checklist--green li::before { color: #1e6b37; }
.lp-checklist--gray li::before { content: '–'; color: #aaa; }
.lp-sublabel { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #888; margin: 0 0 .5rem; }
.mt-3 { margin-top: 1rem; }

/* Content grid */
.lp-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.lp-content-block h2 { font-size: 1.15rem; font-weight: 700; margin: 0 0 .75rem; }
.lp-content-block p { font-size: .9rem; color: #444; line-height: 1.7; margin: 0 0 .75rem; }
.lp-content-block p:last-child { margin-bottom: 0; }

/* CTA */
.lp-cta {
  margin: 2.5rem 0 0;
  border-top: 1px solid #ebebeb;
  padding-top: 2.5rem;
}
.lp-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.lp-cta-inner h2 { font-size: 1.4rem; font-weight: 700; margin: 0 0 .6rem; }
.lp-cta-inner p { color: #666; font-size: .9rem; margin: 0 0 1.5rem; }
.lp-cta-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 767px) {
  .lp-hero { flex-direction: column; align-items: flex-start; }
  .lp-two-col { grid-template-columns: 1fr; }
  .lp-section--alt { padding: 2rem 1rem; margin: 0 -.5rem; }
  .lp-price-table th, .lp-price-table td { padding: .5rem .6rem; font-size: .82rem; }
}
