/* ═══════════════════════════════════════════
   APEX SYSTEMATIC — landingpages.css
═══════════════════════════════════════════ */


/* ── 1. Hero ── */
.lp-hero {
  padding: calc(var(--section-y) * 0.85) 0 calc(var(--section-y) * 0.7);
  border-bottom: 1px solid var(--border);
}

.lp-hero-inner { max-width: 880px; }
.lp-hero h1 { margin-bottom: 1.75rem; max-width: 820px; }

.lp-hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.25rem;
  color: var(--text-muted);
}

.lp-model-line {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 12px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
}

.lp-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ── 2. Pain points ── */
.lp-pains {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--border);
}

.lp-pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.lp-pain {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.lp-pain:hover { background: var(--surface); }

.lp-pain-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.lp-pain p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}


/* ── 3. Services ── */
.lp-services {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--border);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.lp-service {
  padding: 36px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  position: relative;
}

.lp-service::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
  transition: width var(--ease-slow);
}

.lp-service:hover::before { width: 48px; }
.lp-service:hover { background: var(--surface); }

.lp-service h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

.lp-service p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.lp-services-footer {
  margin-top: 28px;
  text-align: right;
}

.lp-services-footer a {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing var(--ease);
}

.lp-services-footer a:hover { letter-spacing: 0.2em; }


/* ── 4. Credibility ── */
.lp-cred {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.lp-cred-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.lp-cred-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.2;
}

.lp-cred-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lp-cred-body p:last-child { margin-bottom: 0; }

.lp-cred-body strong {
  color: var(--text);
  font-weight: 500;
}


/* ── 5. Bottom CTA ── */
.lp-cta {
  padding: calc(var(--section-y) * 0.9) 0;
  border-bottom: 1px solid var(--border);
}

.lp-cta-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.25;
}

.lp-cta-inner p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}

.lp-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing var(--ease);
  padding: 15px 0;
}

.lp-cta-secondary:hover { letter-spacing: 0.2em; }


/* ── 6. Inter-page nav ── */
.lp-other-verticals { padding: calc(var(--section-y) * 0.7) 0; }
.lp-other-verticals .section-header { margin-bottom: 32px; }

.lp-vert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.lp-vert {
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: background var(--ease), color var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-vert:hover {
  background: var(--surface);
  color: var(--white);
}

.lp-vert-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform var(--ease);
}

.lp-vert:hover .lp-vert-arrow { transform: translateX(3px); }

.lp-vert.is-current {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  cursor: default;
  pointer-events: none;
}


/* ── 7. Media queries ── */
@media (max-width: 1024px) {
  .lp-cred-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .lp-pains-grid,
  .lp-services-grid {
    grid-template-columns: 1fr;
  }

  .lp-pain { padding: 26px 24px; }
  .lp-service { padding: 32px 24px; }
  .lp-cred-inner { gap: 28px; }
  .lp-services-footer { text-align: left; }
}

@media (max-width: 600px) {
  .lp-vert-grid { grid-template-columns: 1fr; }
}