/* MODULE: Landing Pages Public | FILE: styles.css */
/* All styles for the public landing page renderer. Plain CSS only. */

/* ───────────────────────────── PAGE SHELL ────────────────────────────── */

.lp-page {
  min-height: 100vh;
  background: #ffffff;
  color: #1e293b;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ───────────────────────────── HONEYPOT TRAP ─────────────────────────── */
/* position off-screen; do NOT use display:none or visibility:hidden */

.lp-hp-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* ───────────────────────────── HERO SECTION ──────────────────────────── */

.lp-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.lp-hero__headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.lp-hero__sub {
  font-size: 1.15rem;
  color: #475569;
  margin: 0 0 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lp-hero__cta {
  display: inline-block;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.lp-hero__cta:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

.lp-hero__cta:active {
  transform: translateY(0);
}

/* ───────────────────────────── LEAD FORM SECTION ─────────────────────── */

.lp-form-section {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.lp-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lp-form__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
}

.lp-form__required {
  color: #ef4444;
}

.lp-form__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-form__input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.lp-form__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  box-sizing: border-box;
  resize: vertical;
  font-family: inherit;
  min-height: 80px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-form__textarea:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.lp-form__error {
  font-size: 0.85rem;
  color: #ef4444;
  margin: 0;
  padding: 0.4rem 0.6rem;
  background: #fef2f2;
  border-radius: 6px;
}

.lp-form__submit {
  width: 100%;
  padding: 0.8rem;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}

.lp-form__submit:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

.lp-form__submit:active {
  transform: translateY(0);
}

.lp-form__submit:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
}

/* ───────────────────────────── TRUST SECTION ─────────────────────────── */

.lp-trust {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.lp-trust__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.lp-trust__badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.lp-trust__testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-trust__quote-block {
  margin: 0;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 3px solid #6366f1;
  border-radius: 0 8px 8px 0;
}

.lp-trust__quote {
  font-size: 1rem;
  color: #334155;
  margin: 0 0 0.5rem;
  font-style: italic;
  line-height: 1.6;
}

.lp-trust__author {
  font-size: 0.85rem;
  color: #64748b;
  font-style: normal;
}

/* ───────────────────────────── FOOTER SECTION ────────────────────────── */

.lp-footer {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.lp-footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.lp-footer__link {
  font-size: 0.85rem;
  color: #6366f1;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer__link:hover {
  color: #4f46e5;
  text-decoration: underline;
}

/* ───────────────────────────── THANK YOU ──────────────────────────────── */

.lp-thankyou {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.lp-thankyou__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}

.lp-thankyou__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.lp-thankyou__text {
  font-size: 1rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* ───────────────────────────── RESPONSIVE ────────────────────────────── */

@media (max-width: 640px) {
  .lp-hero {
    padding: 2.5rem 1rem 2rem;
  }

  .lp-hero__headline {
    font-size: 1.75rem;
  }

  .lp-hero__sub {
    font-size: 1rem;
  }

  .lp-form-section {
    padding: 1.5rem 1rem 2rem;
  }

  .lp-trust {
    padding: 1.5rem 1rem;
  }
}
