/* Landing Page Generator — Frontend Styles
   Brand Colors:
   Navy (headings): #1E293B
   Primary Blue:    #0EA5E9
   CTA Orange:      #F97316
   Body Text:       #334155
   Light BG:        #F8FAFC
*/

/* ── Reset & Base ── */
.lpg-page { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #334155; line-height: 1.7; }
.lpg-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lpg-page h1, .lpg-page h2, .lpg-page h3 { color: #1E293B; line-height: 1.3; margin-top: 0; }
.lpg-page p { margin-top: 0; }
.lpg-label { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #0EA5E9; margin-bottom: 10px; }

/* ── Buttons ── */
.lpg-btn-primary {
  display: inline-block; background: #F97316; color: #fff; font-weight: 600;
  padding: 14px 28px; border-radius: 6px; text-decoration: none; font-size: 16px;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.lpg-btn-primary:hover { background: #ea6c0a; transform: translateY(-1px); color: #fff; text-decoration: none; }
.lpg-btn-secondary {
  display: inline-block; background: transparent; color: #0EA5E9; font-weight: 600;
  padding: 14px 28px; border-radius: 6px; text-decoration: none; font-size: 16px;
  border: 2px solid #0EA5E9; transition: all .2s;
}
.lpg-btn-secondary:hover { background: #0EA5E9; color: #fff; text-decoration: none; }
.lpg-btn-full { width: 100%; text-align: center; }

/* ── Section shared ── */
.lpg-section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.lpg-section-header h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.lpg-section-header p { font-size: 17px; color: #64748B; }

/* ── Hero ── */
.lpg-hero { background: #1E293B; padding: 80px 0 90px; text-align: center; }
.lpg-hero-badge { display: inline-block; background: rgba(14,165,233,.15); color: #38BDF8; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; letter-spacing: .05em; text-transform: uppercase; border: 1px solid rgba(14,165,233,.3); }
.lpg-h1 { font-size: clamp(32px, 5vw, 58px); color: #fff; margin-bottom: 18px; font-weight: 700; }
.lpg-hero-sub { font-size: clamp(18px, 2.5vw, 22px); color: #94A3B8; margin-bottom: 20px; font-weight: 500; }
.lpg-hero-intro { font-size: 17px; color: #94A3B8; max-width: 680px; margin: 0 auto 36px; }
.lpg-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.lpg-trust-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: #64748B; }
.lpg-trust-row span { color: #94A3B8; }

/* ── Benefits Bar ── */
.lpg-benefits-bar { background: #0EA5E9; padding: 16px 0; }
.lpg-benefits-list { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.lpg-benefits-list li { color: #fff; font-size: 14px; font-weight: 600; }

/* ── Services ── */
.lpg-services { padding: 80px 0; background: #fff; }
.lpg-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.lpg-service-card { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 10px; padding: 28px; transition: box-shadow .2s, transform .2s; }
.lpg-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.lpg-service-icon { color: #0EA5E9; margin-bottom: 14px; }
.lpg-service-card h3 { font-size: 18px; margin-bottom: 10px; }
.lpg-service-card p { font-size: 15px; color: #64748B; margin: 0; }

/* ── Why Us ── */
.lpg-why { background: #F8FAFC; padding: 80px 0; }
.lpg-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lpg-why-text h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.lpg-why-text p  { font-size: 16px; color: #64748B; margin-bottom: 20px; }
.lpg-why-list { padding-left: 0; list-style: none; margin-bottom: 32px; }
.lpg-why-list li { padding: 10px 0; border-bottom: 1px solid #E2E8F0; font-size: 15px; color: #334155; }
.lpg-why-list li:last-child { border: none; }
.lpg-why-list strong { color: #1E293B; }
.lpg-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lpg-stat { background: #fff; border: 1px solid #E2E8F0; border-radius: 10px; padding: 28px 20px; text-align: center; }
.lpg-stat-num { display: block; font-size: 36px; font-weight: 700; color: #0EA5E9; }
.lpg-stat-label { display: block; font-size: 14px; color: #64748B; margin-top: 4px; }

/* ── Process ── */
.lpg-process { padding: 80px 0; background: #fff; }
.lpg-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; counter-reset: step; }
.lpg-step { text-align: center; padding: 32px 20px; border-radius: 10px; background: #F8FAFC; border: 1px solid #E2E8F0; }
.lpg-step-num { display: inline-block; font-size: 13px; font-weight: 700; color: #0EA5E9; background: rgba(14,165,233,.1); padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; letter-spacing: .05em; }
.lpg-step h3 { font-size: 18px; margin-bottom: 10px; }
.lpg-step p  { font-size: 14px; color: #64748B; margin: 0; }

/* ── FAQ ── */
.lpg-faq { padding: 80px 0; background: #F8FAFC; }
.lpg-faq-list { max-width: 760px; margin: 0 auto; }
.lpg-faq-item { border-bottom: 1px solid #E2E8F0; }
.lpg-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; color: #1E293B; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lpg-faq-q:hover { color: #0EA5E9; }
.lpg-faq-icon { font-size: 22px; color: #0EA5E9; transition: transform .2s; flex-shrink: 0; }
.lpg-faq-q[aria-expanded="true"] .lpg-faq-icon { transform: rotate(45deg); }
.lpg-faq-a { padding-bottom: 20px; }
.lpg-faq-a p { font-size: 15px; color: #64748B; margin: 0; }

/* ── Contact ── */
.lpg-contact { background: #1E293B; padding: 80px 0; }
.lpg-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lpg-contact-text h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; margin-bottom: 16px; }
.lpg-contact-text p  { color: #94A3B8; font-size: 16px; }
.lpg-simple-form { display: flex; flex-direction: column; gap: 14px; }
.lpg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lpg-simple-form input,
.lpg-simple-form textarea { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; padding: 12px 16px; color: #fff; font-size: 15px; width: 100%; box-sizing: border-box; }
.lpg-simple-form input::placeholder,
.lpg-simple-form textarea::placeholder { color: #64748B; }
.lpg-simple-form input:focus,
.lpg-simple-form textarea:focus { outline: none; border-color: #0EA5E9; }

/* ── Success message ── */
.lpg-success-msg { background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.4); color: #38BDF8; padding: 14px 18px; border-radius: 6px; margin-bottom: 16px; font-size: 15px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .lpg-why-inner { grid-template-columns: 1fr; }
  .lpg-contact-inner { grid-template-columns: 1fr; }
  .lpg-stats-grid { grid-template-columns: 1fr 1fr; }
  .lpg-form-row { grid-template-columns: 1fr; }
  .lpg-trust-row { gap: 12px; }
  .lpg-hero-cta { flex-direction: column; align-items: center; }
}

/* ── CTA Banner ── */
.lpg-cta-banner { background: #0EA5E9; padding: 60px 0; text-align: center; }
.lpg-cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.lpg-cta-banner p  { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 28px; }
.lpg-btn-lg { padding: 18px 40px; font-size: 18px; }

/* ── Contact (updated) ── */
.lpg-contact-list { list-style: none; padding: 0; margin: 0 0 28px; }
.lpg-contact-list li { color: #94A3B8; padding: 6px 0; font-size: 15px; }
.lpg-contact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 32px; text-align: center; }
.lpg-contact-card-icon { font-size: 36px; margin-bottom: 16px; }
.lpg-contact-card h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.lpg-contact-card p  { color: #94A3B8; font-size: 15px; margin-bottom: 24px; }

/* ── Related Pages ── */
.lpg-related { padding: 80px 0; background: #fff; }
.lpg-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.lpg-related-card { display: block; background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 10px; padding: 24px; text-decoration: none; transition: box-shadow .2s, transform .2s, border-color .2s; }
.lpg-related-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); transform: translateY(-2px); border-color: #0EA5E9; text-decoration: none; }
.lpg-related-tag { display: inline-block; background: rgba(14,165,233,.1); color: #0EA5E9; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
.lpg-related-card h3 { font-size: 16px; color: #1E293B; margin-bottom: 12px; line-height: 1.4; }
.lpg-related-link { font-size: 14px; color: #0EA5E9; font-weight: 600; }
