/* ============================================================
   Prairie Shield — landing.css
   Styles for Google Ads service landing pages.
   Loads AFTER styles.css and reuses its tokens, buttons,
   .container, .hero-form, .form-group and .faq-* components.
   All classes are prefixed .lp- to avoid clashing with the homepage.
   ============================================================ */

/* === MINIMAL LANDING HEADER =============================== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.lp-header.scrolled { box-shadow: var(--shadow-sm); }

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 46px; width: auto; display: block; }

.lp-header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}
.lp-header-phone svg { color: var(--color-steel); }

.lp-header .btn { padding: 11px 22px; }

@media (max-width: 600px) {
  .lp-header-inner { height: 62px; }
  .lp-logo img { height: 38px; }
  .lp-header-cta .btn { display: none; }
  .lp-header-phone { font-size: 1rem; }
}

/* === HERO ================================================= */
.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(47,111,143,0.35), transparent 60%),
    linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-dark) 100%);
  padding: 64px 0 84px;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 18px;
}
.lp-hero h1 .accent { color: var(--color-gold); }

.lp-hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 26px;
}

.lp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 30px;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.lp-hero-badge svg { color: var(--color-gold); flex-shrink: 0; }

.lp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-hero-form-wrap { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .lp-hero { padding: 44px 0 60px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero-form-wrap { order: 2; }
}

/* === TRUST BAR (under hero) ============================== */
.lp-trust-bar { background: var(--color-white); border-bottom: 1px solid var(--color-border); }
.lp-trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: left;
  padding: 4px 12px;
}
.lp-trust-item + .lp-trust-item { border-left: 1px solid var(--color-border); }
.lp-trust-item svg { color: var(--color-gold); flex-shrink: 0; }
.lp-trust-item strong { display: block; font-size: 0.9375rem; color: var(--color-charcoal); font-weight: 800; line-height: 1.2; }
.lp-trust-item span { font-size: 0.75rem; color: var(--color-text-muted); }
@media (max-width: 760px) {
  .lp-trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .lp-trust-item { padding: 14px 10px; }
  .lp-trust-item:nth-child(3), .lp-trust-item:nth-child(4) { border-top: 1px solid var(--color-border); }
  .lp-trust-item:nth-child(odd) { border-left: none; }
  .lp-trust-item:nth-child(even) { border-left: 1px solid var(--color-border); }
}

/* === GENERIC SECTION ===================================== */
.lp-section { padding: var(--section-pad); }
.lp-section.alt { background: var(--color-bg-light); }
.lp-section.dark { background: var(--color-charcoal); }
.lp-narrow { max-width: 820px; margin: 0 auto; }

.lp-section-head { text-align: center; margin-bottom: 44px; }
.lp-section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.125rem);
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.lp-section.dark .lp-section-head h2 { color: var(--color-white); }
.lp-section-head p { font-size: 1.0625rem; color: var(--color-text-muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.lp-section.dark .lp-section-head p { color: rgba(255,255,255,0.75); }

/* === SYMPTOMS / PROBLEMS =============================== */
.lp-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.lp-symptom-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-steel);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.lp-symptom-card .ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(47,111,143,0.1);
  color: var(--color-steel);
}
.lp-symptom-card strong { display: block; font-size: 1rem; color: var(--color-charcoal); margin-bottom: 4px; }
.lp-symptom-card p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.55; }

/* === EXPLAINER (text + image) ========================== */
.lp-explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-explain-grid.reverse .lp-explain-media { order: -1; }
.lp-explain-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--color-charcoal); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 18px; }
.lp-explain-text p { font-size: 1.03rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 16px; }
.lp-explain-text p:last-child { margin-bottom: 0; }
.lp-explain-media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (max-width: 820px) {
  .lp-explain-grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-explain-grid.reverse .lp-explain-media { order: 0; }
}

/* === BENEFITS ========================================== */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.lp-benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lp-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.5); }
.lp-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--color-gold-muted);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.lp-benefit-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 9px; }
.lp-benefit-card p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.65; }

/* === AUDIENCE (who it's for) =========================== */
.lp-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.lp-audience-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 6px 0;
}
.lp-audience-item .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,168,76,0.16);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.lp-audience-item p { font-size: 1.02rem; color: var(--color-text); line-height: 1.6; }
.lp-audience-item strong { color: var(--color-charcoal); }
@media (max-width: 720px) { .lp-audience-grid { grid-template-columns: 1fr; gap: 6px; } }

/* === WHY US ============================================ */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.lp-why-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.lp-why-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--color-charcoal);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lp-why-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 8px; }
.lp-why-card p { font-size: 0.94rem; color: var(--color-text-muted); line-height: 1.65; }

/* === IMPACT STATS ===================================== */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}
.lp-stat { padding: 10px; }
.lp-stat .n { display: block; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--color-gold); line-height: 1; letter-spacing: -0.02em; }
.lp-stat .l { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.78); margin-top: 8px; font-weight: 500; }
@media (max-width: 640px) { .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; } }

/* === PROCESS ========================================== */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.lp-step { text-align: center; position: relative; }
.lp-step-num {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.lp-step h3 { font-size: 1.08rem; font-weight: 700; color: var(--color-charcoal); margin-bottom: 8px; }
.lp-step p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.6; }
@media (max-width: 720px) { .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* === REVIEWS ========================================== */
.lp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.lp-review {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.lp-review-stars { color: var(--color-gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.lp-review blockquote { font-size: 1rem; color: var(--color-text); line-height: 1.7; margin-bottom: 14px; }
.lp-review cite { font-size: 0.875rem; color: var(--color-text-muted); font-style: normal; font-weight: 600; }

/* === FINAL CTA BAND + FORM ============================ */
.lp-cta {
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(47,111,143,0.3), transparent 60%),
    linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-dark) 100%);
  color: var(--color-white);
  padding: 72px 0;
}
.lp-cta-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
}
.lp-cta-text h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.lp-cta-text p { font-size: 1.08rem; color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 26px; }
.lp-cta-phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1.5rem; font-weight: 800; color: var(--color-white);
  margin-bottom: 8px;
}
.lp-cta-phone svg { color: var(--color-gold); }
.lp-cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .lp-cta-grid { grid-template-columns: 1fr; gap: 34px; }
  .lp-cta-form-wrap { order: 2; }
}

/* === SIMPLIFIED FOOTER ================================ */
.lp-footer { background: var(--color-charcoal-dark); color: rgba(255,255,255,0.7); padding: 46px 0 28px; }
.lp-footer-inner { display: flex; flex-wrap: wrap; gap: 28px 48px; justify-content: space-between; align-items: flex-start; }
.lp-footer img { height: 48px; margin-bottom: 14px; }
.lp-footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.lp-footer-links a { color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 500; }
.lp-footer-links a:hover { color: var(--color-gold); }
.lp-footer-contact a { display: flex; align-items: center; gap: 9px; color: var(--color-white); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.lp-footer-contact a svg { color: var(--color-gold); }
.lp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.lp-footer-bottom a { color: rgba(255,255,255,0.7); }

/* === STICKY MOBILE CTA BAR =========================== */
.lp-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(19,19,31,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lp-sticky-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
}
.lp-sticky-call { background: var(--color-steel); color: var(--color-white); }
.lp-sticky-quote { background: var(--color-gold); color: var(--color-charcoal); }
@media (max-width: 760px) {
  .lp-sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 72px; }
  .float-call, .scroll-top { display: none !important; }
}

/* === BREADCRUMB ====================================== */
.lp-breadcrumb { padding: 14px 0; font-size: 0.85rem; color: var(--color-text-muted); }
.lp-breadcrumb a { color: var(--color-steel); font-weight: 600; }
.lp-breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* === FADE-UP (shared animation, self-contained) ====== */
.lp-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--bezier), transform 0.6s var(--bezier); }
.lp-fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lp-fade { opacity: 1; transform: none; transition: none; }
}
