/* ==========================================================================
   Mobile IT Guys — Review landing page (/preview)
   Builds on assets/services.css tokens + components. Only adds what the
   lead page needs: hero spacing, "how it works" steps, and the quote form.
   ========================================================================== */

.lp-hero { padding: 84px 0 92px; }
.lp-hero h1 { max-width: 900px; }
.lp-hl { color: var(--orange); }

.lp-hero-copy { max-width: 760px; }

/* ---- guarantees ---- */
.lp-guarantees { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-guar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 28px; }
.lp-guar { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px 30px 74px; }
.lp-guar-num { position: absolute; left: 26px; top: 30px; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 19px; }
.lp-guar h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 23px; color: var(--navy); margin-bottom: 8px; line-height: 1.15; }
.lp-guar p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ---- who we are ---- */
.lp-about { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.lp-about-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.lp-about-photo { display: flex; justify-content: center; }
.lp-about-img { width: 100%; max-width: 360px; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.lp-about .section-title { color: var(--white); }
.lp-about-copy .lp-lead { color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.lp-about-copy .lp-lead:last-of-type { margin-bottom: 28px; }
@media (max-width: 860px) {
  .lp-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-about-photo { order: -1; }
  .lp-about-img { max-width: 300px; }
  .lp-guar-grid { grid-template-columns: 1fr; }
}

/* ---- shared section rhythm ---- */
.lp-section { padding: 72px 0; }
.lp-section .section-eyebrow { display: block; }
.lp-lead { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 6px 0 32px; line-height: 1.6; }

/* ---- how it works ---- */
.lp-steps { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.lp-step { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px 26px; }
.lp-step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; margin-bottom: 16px; }
.lp-step h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--navy); margin-bottom: 8px; line-height: 1.1; }
.lp-step p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ---- proof ---- */
.lp-proof .work-grid { margin-top: 8px; }

/* ---- quote / form ---- */
.lp-quote { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.lp-quote-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.lp-quote .section-title { color: var(--white); }
.lp-quote .lp-lead { color: rgba(255,255,255,0.78); }
.lp-ticks { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 12px; }
.lp-ticks li { position: relative; padding-left: 30px; font-size: 16px; color: rgba(255,255,255,0.9); }
.lp-ticks li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; background: var(--orange); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

.lp-form { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 20px 50px rgba(6,23,38,0.35); color: var(--text); }
.lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.lp-field label, .lp-legend { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 8px; display: block; }
.lp-field input[type=text], .lp-field input[type=email], .lp-field input[type=tel], .lp-field select {
  font-family: inherit; font-size: 16px; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s; width: 100%;
}
.lp-field input:focus, .lp-field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.15); }

.lp-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-choices-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-choices-half { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-choices-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.lp-choices-list .lp-choice span { text-align: left; }
.lp-choice { position: relative; }
.lp-choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.lp-choice span { display: block; text-align: center; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.15s; }
.lp-choice input:hover + span { border-color: var(--orange); }
.lp-choice input:checked + span { border-color: var(--orange); background: var(--orange); color: var(--white); }
.lp-choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(249,115,22,0.25); }

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

/* ---- basic package card (/basic) ---- */
.lp-pkg-card { background: var(--white); border-radius: 16px; padding: 36px 32px; box-shadow: 0 20px 50px rgba(6,23,38,0.35); color: var(--text); text-align: center; }
.lp-pkg-label { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.lp-pkg-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 72px; color: var(--navy); line-height: 1; }
.lp-pkg-sub { font-size: 15px; color: var(--text-muted); margin: 8px 0 22px; }
.lp-pay { display: grid; gap: 10px; margin-bottom: 22px; text-align: left; }
.lp-pay-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-weight: 600; color: var(--navy); }
.lp-pay-row span:last-child { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; color: var(--orange); }
.lp-pkg-cta { display: block; width: 100%; text-align: center; }
.lp-pkg-cta-alt { margin-top: 10px; border-color: var(--border); color: var(--navy); }

.lp-submit { width: 100%; margin-top: 6px; font-size: 17px; padding: 16px; }
.lp-formnote { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 12px; }

.lp-status { margin-top: 14px; font-size: 15px; font-weight: 600; text-align: center; }
.lp-status-err { color: #DC2626; }

.lp-thanks { text-align: center; padding: 20px 8px; }
.lp-thanks-tick { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green); color: #fff; font-size: 34px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lp-thanks h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; color: var(--navy); margin-bottom: 10px; }
.lp-thanks p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.lp-thanks a { color: var(--orange); font-weight: 700; }

@media (max-width: 860px) {
  .lp-quote-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .lp-steps-grid { grid-template-columns: 1fr; }
  .lp-choices-grid { grid-template-columns: 1fr; }
  .lp-choices-half { grid-template-columns: 1fr; }
  .lp-row { grid-template-columns: 1fr; }
  .lp-form { padding: 24px; }
}
