/* ── Legacy Asset Management — Lead Capture Plugin ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --lam-navy:  #1A3A5C;
  --lam-green: #2E7D32;
  --lam-green-light: #E8F5E9;
  --lam-cream: #FAFAF7;
  --lam-white: #ffffff;
  --lam-text:  #1a1a1a;
  --lam-muted: #6b7280;
  --lam-border:#e5e7eb;
  --lam-red:   #dc2626;
  --lam-radius:12px;
}

.lam-wrap { font-family: 'DM Sans', sans-serif; color: var(--lam-text); }

/* HERO */
.lam-hero {
  background: linear-gradient(135deg, var(--lam-navy) 0%, #0f2740 100%);
  padding: 56px 24px 64px;
  text-align: center;
  border-radius: var(--lam-radius);
  margin-bottom: 0;
}
.lam-badge {
  display: inline-block;
  background: var(--lam-green);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.lam-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(24px, 4vw, 38px) !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin: 0 auto 14px !important;
  max-width: 600px;
}
.lam-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TRUST BAR */
.lam-trust-bar {
  background: var(--lam-white);
  border: 1px solid var(--lam-border);
  border-top: none;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.lam-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lam-muted); }
.lam-trust-item strong { color: var(--lam-text); }
.lam-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lam-green); flex-shrink: 0; }

/* LAYOUT */
.lam-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lam-layout { grid-template-columns: 1fr 340px; }
}

/* FORM CARD */
.lam-form-card {
  background: var(--lam-white);
  border: 1px solid var(--lam-border);
  border-radius: var(--lam-radius);
  padding: 32px;
}
.lam-form-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--lam-navy) !important;
  margin: 0 0 6px !important;
}
.lam-form-sub {
  font-size: 14px;
  color: var(--lam-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lam-border);
}
.lam-req { color: var(--lam-red); }

.lam-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lam-muted);
  margin: 22px 0 12px;
}

.lam-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .lam-row { grid-template-columns: 1fr; } }

.lam-field { margin-bottom: 16px; }
.lam-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--lam-text);
  margin-bottom: 6px;
}
.lam-field input,
.lam-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--lam-border);
  border-radius: 8px;
  background: var(--lam-cream);
  color: var(--lam-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.lam-field textarea { resize: vertical; min-height: 90px; }
.lam-field input:focus,
.lam-field textarea:focus {
  outline: none;
  border-color: var(--lam-navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
  background: var(--lam-white);
}
.lam-field input.lam-invalid { border-color: var(--lam-red); }

.lam-error {
  display: none;
  font-size: 12px;
  color: var(--lam-red);
  margin-top: 4px;
}
.lam-error.visible { display: block; }

/* PILLS */
.lam-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.lam-pill {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: 1.5px solid var(--lam-border);
  background: var(--lam-cream);
  color: var(--lam-text);
  transition: all 0.15s;
  user-select: none;
}
.lam-pill:hover { border-color: var(--lam-navy); background: var(--lam-white); }
.lam-pill.active { background: var(--lam-navy); border-color: var(--lam-navy); color: #fff; }

/* SUBMIT */
.lam-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--lam-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
.lam-submit:hover { background: #14304e; }
.lam-submit:active { transform: scale(0.99); }
.lam-submit:disabled { background: #9ca3af; cursor: not-allowed; }

.lam-form-error {
  background: #fef2f2;
  color: var(--lam-red);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 14px;
  border: 1px solid #fecaca;
}
.lam-disclaimer { font-size: 12px; color: var(--lam-muted); text-align: center; margin-top: 12px; }

/* THANK YOU */
.lam-thankyou {
  background: var(--lam-white);
  border: 1px solid var(--lam-border);
  border-radius: var(--lam-radius);
  padding: 48px 32px;
  text-align: center;
}
.lam-ty-icon {
  width: 64px; height: 64px;
  background: var(--lam-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  margin: 0 auto 20px;
}
.lam-ty-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--lam-navy); margin-bottom: 10px; }
.lam-ty-sub { font-size: 15px; color: var(--lam-muted); line-height: 1.7; max-width: 400px; margin: 0 auto 20px; }
.lam-ty-contact {
  background: #f9fafb;
  border: 1px solid var(--lam-border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--lam-muted);
  line-height: 2;
  display: inline-block;
  text-align: left;
}
.lam-ty-contact strong { color: var(--lam-text); }
.lam-ty-contact a { color: var(--lam-navy); text-decoration: none; }

/* SIDEBAR */
.lam-sidebar { display: flex; flex-direction: column; gap: 20px; }
.lam-sidebar-card {
  background: var(--lam-white);
  border: 1px solid var(--lam-border);
  border-radius: var(--lam-radius);
  padding: 22px;
}
.lam-sidebar-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--lam-navy) !important;
  margin: 0 0 14px !important;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lam-green-light);
}
.lam-sidebar-card p { font-size: 14px; color: var(--lam-muted); line-height: 1.7; margin-bottom: 10px; }
.lam-sidebar-card p:last-child { margin-bottom: 0; }

.lam-list { list-style: none; padding: 0; margin: 0; }
.lam-list li {
  font-size: 14px;
  color: var(--lam-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--lam-border);
  display: flex; align-items: center; gap: 10px;
}
.lam-list li:last-child { border-bottom: none; }
.lam-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lam-green); flex-shrink: 0; }

.lam-contact-card {
  background: var(--lam-navy);
  border-radius: var(--lam-radius);
  padding: 22px;
  color: #fff;
}
.lam-contact-card h3 { font-family: 'Playfair Display', serif !important; font-size: 16px !important; font-weight: 600 !important; color: #fff !important; margin: 0 0 14px !important; }
.lam-contact-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.lam-contact-row a { color: #fff; text-decoration: none; }
.lam-contact-row a:hover { text-decoration: underline; }
.lam-contact-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.lam-dre { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 12px; color: rgba(255,255,255,0.5); }
