/* =========================================================
   It's Your Idea — frictionless landing pages (outreach)
   Stripped-down chrome, one clear path to a lead. Builds on
   the styles.css design tokens.
   ========================================================= */

.lp-wrap { min-height: 100vh; display: flex; flex-direction: column; }

/* Minimal header — logo + a single subtle action, no nav distractions.
   Sticky so it stays visible on scroll (house rule for all sites). */
.lp-header { position: sticky; top: 0; z-index: 50; padding: 16px 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.07); }
.lp-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-header .brand__logo { height: 30px; width: auto; display: block; }
.lp-header__phone { font-size: .9rem; color: #22c3ea; font-weight: 600; }
.lp-header__phone:hover { color: #fff; }

/* Hero with the form right beside it (above the fold). */
.lp-hero { flex: 1; padding: 56px 0; background: var(--bg); }
.lp-hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.lp-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.12; margin: 12px 0 16px; font-weight: 800; letter-spacing: -.02em; color: #f4f4f6; }
.lp-hero__lead { font-size: 1.16rem; color: #cfd0d4; margin: 0 0 6px; max-width: 540px; }
.lp-points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.lp-points li { position: relative; padding-left: 30px; color: #e4e4e7; line-height: 1.5; }
.lp-points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cyan); font-weight: 800; }

/* Lead form card */
.lp-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.lp-form-card h2 { margin: 0 0 6px; font-size: 1.32rem; }
.lp-form-card .sub { margin: 0 0 18px; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.lp-field { margin-bottom: 14px; }
.lp-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.lp-field input, .lp-field textarea {
  width: 100%; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  border-radius: 8px; padding: 11px 13px; font: inherit;
}
.lp-field input:focus, .lp-field textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; border-color: var(--cyan); }
.lp-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-form__status { font-size: .85rem; margin-top: 4px; min-height: 18px; color: var(--muted); }
.lp-form__status--error { color: #f87171; }
.lp-form-note { margin: 12px 0 0; font-size: .78rem; color: var(--muted); text-align: center; }
.lp-success { text-align: center; padding: 14px 6px; }
.lp-success h2 { margin: 0 0 8px; color: #34d399; }
.lp-success p { margin: 0; color: var(--muted); }

/* Trust strip + footer */
.lp-trust { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.07); color: var(--muted); font-size: .85rem; }
.lp-trust .container { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; align-items: center; }
.lp-footer { padding: 20px 0; background: var(--navy); text-align: center; font-size: .82rem; color: var(--muted); }
.lp-footer a { color: var(--muted); }
.lp-footer a:hover { color: var(--cyan); }

@media (max-width: 820px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-hero { padding: 40px 0; }
  .lp-hero__copy { text-align: center; }
  .lp-points { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
}
