/* ===== LANDING PAGE STYLES ===== */

/* Hero override: single-column, no phone stack
   NOTE: .lp-hero is on the same div as .hero-grid, so use compound selector */
.hero-grid.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
}
.lp-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.lp-hero .hero-sub { max-width: 540px; }
.lp-hero-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.lp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .hero-grid.lp-hero { grid-template-columns: 1fr; }
  .lp-hero-img { display: none; }
}

/* Trust strip */
.lp-trust {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.lp-trust-row span { display: flex; align-items: center; gap: 6px; }
.lp-trust-row .check { color: var(--orange); font-weight: 700; font-size: 1rem; }

/* Problem card — landing page variant (ul list inside dark card) */
.problem-card-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  margin: 4px 8px 10px;
}
.problem-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 12px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.45;
}
.problem-list li:first-child { border-top: none; }
.problem-list li::before {
  content: '✕';
  color: #f87171;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* How it works — landing variant */
.lp-steps { padding: 80px 0; background: #fff; }
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.lp-step { display: flex; flex-direction: column; gap: 12px; }
.lp-step-nr {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-step h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.lp-step p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* Mid-page CTA bar */
.lp-cta-bar {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.lp-cta-bar h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 8px;
}
.lp-cta-bar p { color: rgba(255,255,255,.88); margin: 0 0 28px; font-size: 1rem; }
.lp-cta-bar .btn { background: #fff; color: var(--orange); font-weight: 700; }
.lp-cta-bar .btn:hover { background: var(--cream); }

/* SMS scenario */
.lp-scenario { background: var(--cream); padding: 80px 0; }
.lp-scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-scenario-tekst h2 { margin-bottom: 16px; }
.lp-scenario-tekst p  { color: var(--muted); line-height: 1.6; }
.lp-sms-bubble {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,.09);
  max-width: 380px;
  width: 100%;
}
.lp-sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.lp-sms-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-sms-meta { display: flex; flex-direction: column; }
.lp-sms-from  { font-weight: 600; font-size: .85rem; }
.lp-sms-label { font-size: .75rem; color: var(--muted); }
.lp-sms-text  { font-size: .9rem; line-height: 1.6; color: var(--dark); }
.lp-sms-time  { font-size: .75rem; color: var(--muted); margin-top: 10px; text-align: right; }

/* Benefits */
.lp-benefits { padding: 80px 0; background: #fff; }
.lp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.lp-benefit { display: flex; gap: 14px; align-items: flex-start; }
.lp-benefit-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.lp-benefit h3 { font-size: .95rem; font-weight: 700; margin: 0 0 4px; }
.lp-benefit p  { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* FAQ block on landing pages */
.lp-faq { padding: 80px 0; background: var(--cream); }
.lp-faq h2 { margin-bottom: 12px; text-align: center; }
.lp-faq .faq-intro { text-align: center; margin-bottom: 40px; }

/* Responsive — tablet */
@media (max-width: 900px) {
  .lp-scenario-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-sms-bubble    { max-width: 100%; }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  .lp-steps-grid    { grid-template-columns: 1fr; gap: 28px; }
  .lp-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .lp-cta-bar       { padding: 40px 0; }
  .lp-trust-row     { gap: 8px 20px; font-size: .82rem; }
  .lp-scenario      { padding: 56px 0; }
  .lp-benefits      { padding: 56px 0; }
  .lp-steps         { padding: 56px 0; }
  .lp-faq           { padding: 56px 0; }
}
