/* ================================================================
   True Rescue School-District LP -- styles.css
   Hosted at: pagerocket.net/true-rescue-schools
   Brand palette extracted live from truerescue.com (2026-05-31)
   ================================================================ */

/* ---------- Brand palette (CSS custom properties) ---------- */
:root {
  --lp-primary:        #E13124;   /* True Rescue red -- hero, CTAs, accents */
  --lp-primary-dark:   #AB2328;   /* darker red for hover/active */
  --lp-secondary:      #101824;   /* near-black navy -- text headers, dark sections */
  --lp-accent:         #FEBE40;   /* orange callouts */
  --lp-text:           #2E2E2E;   /* body text */
  --lp-text-light:     #6B7280;   /* subtle/secondary text */
  --lp-bg:             #FFFFFF;   /* main background */
  --lp-bg-alt:         #F4F7FA;   /* subtle alternating bg */
  --lp-border:         #E5E7EB;   /* hairlines */
  --lp-shadow:         0 6px 24px rgba(16, 24, 36, 0.08);
  --lp-shadow-lg:      0 12px 40px rgba(16, 24, 36, 0.12);

  --lp-radius-sm: 4px;
  --lp-radius-md: 8px;
  --lp-radius-lg: 16px;

  --lp-max-w: 1200px;
}

@media (min-width: 1440px) { :root { --lp-max-w: 1320px; } }
@media (min-width: 1920px) { :root { --lp-max-w: 1480px; } }

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
}
@media (max-width: 640px) { body { padding-bottom: 76px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lp-primary); text-decoration: none; }
a:hover { color: var(--lp-primary-dark); }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 0.4em; line-height: 1.15; color: var(--lp-secondary); font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.lp-container { width: 100%; max-width: var(--lp-max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .lp-container { padding: 0 48px; } }

.lp-text-center { text-align: center; }

/* ---------- Eyebrow / Section heading ---------- */
.lp-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.lp-eyebrow.lp-eyebrow--red  { color: var(--lp-primary); }
.lp-eyebrow.lp-eyebrow--dark { color: var(--lp-secondary); opacity: 0.7; }

.lp-section-h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--lp-secondary);
  margin: 0 0 24px;
}
.lp-section-sub {
  font-size: 17px;
  color: var(--lp-text-light);
  max-width: 720px;
  margin: 0 auto 40px;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--lp-radius-md);
  border: none;
  text-decoration: none;
  transition: transform 0.1s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 49, 36, 0.28);
}
.lp-btn--primary:hover { background: var(--lp-primary-dark); color: #fff; box-shadow: 0 6px 18px rgba(225, 49, 36, 0.35); }
.lp-btn--lg { padding: 18px 32px; font-size: 17px; }
.lp-btn--nav { padding: 10px 18px; font-size: 14px; }
.lp-btn--full { width: 100%; }

/* ---------- Announcement Bar ---------- */
.lp-announcement-bar {
  background: var(--lp-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}
.lp-announcement-bar__inner {
  max-width: var(--lp-max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.lp-announcement-bar__text { letter-spacing: 0.02em; }
.lp-dot { opacity: 0.55; margin: 0 4px; }

.lp-pill {
  background: #fff;
  color: var(--lp-primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  position: absolute;
  left: 24px;
}
.lp-pill--dark {
  background: var(--lp-secondary);
  color: #fff;
  position: static;
  display: inline-block;
}
@media (max-width: 768px) {
  .lp-announcement-bar { font-size: 12px; padding: 10px 16px; }
  .lp-announcement-bar__inner { padding: 0 8px; gap: 8px; flex-direction: column; }
  .lp-pill { position: static; }
  .lp-announcement-bar__text { display: block; line-height: 1.4; }
}

/* ---------- Nav ---------- */
.lp-nav {
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--lp-max-w);
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 1024px) { .lp-nav { padding: 16px 48px; } }
.lp-nav__logo img { height: 52px; width: auto; display: block; }
.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-secondary);
}
.lp-nav__links a { color: var(--lp-secondary); }
.lp-nav__links a:hover { color: var(--lp-primary); }
.lp-nav__sep { color: var(--lp-border); }
@media (max-width: 900px) { .lp-nav__links { display: none; } }

/* ---------- Hero ---------- */
.lp-hero {
  background: linear-gradient(180deg, var(--lp-bg-alt) 0%, #fff 100%);
  padding: 40px 0 64px;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.lp-hero__headline {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--lp-secondary);
  margin: 0 0 20px;
}
.lp-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-text-light);
  max-width: 600px;
  margin: 0 0 28px;
}
.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-secondary);
}
.lp-hero__trust li { display: flex; align-items: center; gap: 6px; }
.lp-icon-sm { width: 18px; height: 18px; color: var(--lp-primary); flex-shrink: 0; }
.lp-icon-md { width: 44px; height: 44px; color: #fff; }
.lp-trust-pillar__icon { width: 80px; height: 80px; object-fit: contain; display: block; }
.lp-hero__visual img {
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .lp-hero { padding: 40px 0 56px; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero__headline { font-size: clamp(28px, 6vw, 40px); }
}

/* ---------- Trust Strip ---------- */
.lp-trust-strip {
  background: var(--lp-secondary);
  color: #fff;
  padding: 72px 0;
}
.lp-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.lp-trust-pillar {
  text-align: center;
  padding: 0 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lp-trust-pillar + .lp-trust-pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.lp-trust-pillar strong {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}
.lp-trust-pillar span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .lp-trust-strip { padding: 32px 0; }
  .lp-trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .lp-trust-pillar + .lp-trust-pillar::before { display: none; }
  .lp-trust-pillar strong { font-size: 18px; }
}

/* ---------- Problem / Pain ---------- */
.lp-problem {
  background: var(--lp-bg-alt);
  padding: 80px 0;
}
.lp-problem__h {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.2vw, 42px);
}
.lp-problem__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.lp-problem__list { text-align: left; }
.lp-problem__statement {
  font-size: 19px;
  line-height: 1.55;
  color: var(--lp-text);
  margin: 28px 0;
}
.lp-problem__statement strong { color: var(--lp-secondary); font-weight: 700; }
.lp-problem__divider {
  border: none;
  border-top: 2px solid var(--lp-primary);
  width: 60px;
  margin: 16px 0;
}
.lp-problem__illust {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-problem__illust svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}
@media (max-width: 960px) {
  .lp-problem__body { grid-template-columns: 1fr; }
  .lp-problem__illust svg { max-width: 280px; margin: 0 auto; }
}

/* ---------- Solution / Three Pillars ---------- */
.lp-solution { padding: 96px 0; background: #fff; }
.lp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lp-pillar {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  border-top: 4px solid var(--lp-primary);
  padding: 36px 28px 28px;
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp-pillar__icon { width: 160px; height: 160px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.lp-pillar__icon svg, .lp-pillar__icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-pillar__h { font-size: 22px; font-weight: 800; color: var(--lp-secondary); margin: 0 0 12px; }
.lp-pillar__body { font-size: 16px; color: var(--lp-text-light); line-height: 1.55; flex: 1; margin: 0 0 16px; }
.lp-tag {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-secondary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .lp-solution { padding: 60px 0; }
  .lp-pillars { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Compliance Table ---------- */
.lp-compliance { padding: 96px 0; background: var(--lp-bg-alt); }
.lp-compliance .lp-section-h2 { max-width: 880px; margin-left: auto; margin-right: auto; }
.lp-compliance__card {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow);
  margin: 0 auto 24px;
  max-width: 900px;
  overflow: hidden;
}
.lp-compliance__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}
.lp-compliance__row:last-child { border-bottom: none; }
.lp-compliance__row > div { padding: 18px 24px; }
.lp-compliance__row > div:first-child {
  font-weight: 500;
  color: var(--lp-secondary);
  border-right: 2px solid var(--lp-primary);
}
.lp-compliance__row > div:nth-child(2) {
  color: var(--lp-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lp-compliance__row--head > div {
  background: var(--lp-bg-alt);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  padding: 16px 24px;
}
.lp-check {
  color: #16A34A;
  font-weight: 800;
  flex-shrink: 0;
}
.lp-compliance__row em { font-style: normal; color: var(--lp-text-light); }
.lp-compliance__note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--lp-text-light);
  margin-top: 24px;
}
.lp-link-arrow {
  display: inline-block;
  color: var(--lp-primary);
  font-weight: 700;
  margin-top: 8px;
}
.lp-link-arrow:hover { color: var(--lp-primary-dark); text-decoration: underline; }
@media (max-width: 768px) {
  .lp-compliance { padding: 56px 0; }
  .lp-compliance__row { grid-template-columns: 1fr; }
  .lp-compliance__row > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--lp-border);
    padding-bottom: 8px;
  }
}

/* ---------- How It Works ---------- */
.lp-how { padding: 96px 0; background: #fff; }
.lp-how .lp-section-h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.lp-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 64px 0 32px;
  position: relative;
}
.lp-how__steps::before {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  top: 130px;
  border-top: 2px dashed var(--lp-primary);
  z-index: 0;
}
.lp-how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.lp-how__step-h {
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-secondary);
  margin: 0 0 28px;
  min-height: 72px;
  max-width: 300px;
  line-height: 1.15;
}
.lp-how__step-circle {
  width: 88px;
  height: 88px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(225, 49, 36, 0.25);
}
.lp-how__step-body { font-size: 16px; color: var(--lp-text-light); line-height: 1.55; max-width: 320px; }
.lp-how__note {
  text-align: center;
  font-size: 14px;
  color: var(--lp-text-light);
  margin-top: 24px;
}
@media (max-width: 960px) {
  .lp-how { padding: 60px 0; }
  .lp-how__steps { grid-template-columns: 1fr; gap: 32px; }
  .lp-how__steps::before { display: none; }
  .lp-how__step-h { min-height: auto; }
}

/* ---------- Social Proof ---------- */
.lp-social { padding: 96px 0; background: var(--lp-bg-alt); }
.lp-social__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.lp-review {
  background: #fff;
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  box-shadow: var(--lp-shadow);
  border-top: 4px solid var(--lp-primary);
  margin: 0;
}
.lp-review--featured { border-top: none; padding: 36px 32px; }
.lp-review__stars { color: var(--lp-primary); font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.lp-review__quote {
  font-size: 18px;
  line-height: 1.5;
  color: var(--lp-secondary);
  margin: 0 0 20px;
  font-weight: 600;
}
.lp-review--featured .lp-review__quote { font-size: 21px; }
.lp-review__cite { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--lp-text-light); font-style: normal; }
.lp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-bg-alt);
  color: var(--lp-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.lp-review__date { color: var(--lp-text-light); }
.lp-review__badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-primary);
  border: 1px solid var(--lp-primary);
  padding: 2px 8px;
  border-radius: 4px;
}
.lp-social__footer {
  text-align: center;
  font-size: 14px;
  color: var(--lp-text-light);
  margin-top: 32px;
}
@media (max-width: 960px) {
  .lp-social { padding: 60px 0; }
  .lp-social__grid { grid-template-columns: 1fr; }
  .lp-review--featured .lp-review__quote { font-size: 18px; }
}

/* ---------- Founder ---------- */
.lp-founder { padding: 96px 0; background: #fff; }
.lp-founder__inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-founder__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-founder__photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--lp-primary);
  box-shadow: var(--lp-shadow-lg);
}
.lp-founder__caption {
  background: #fff;
  padding: 10px 18px;
  border-radius: var(--lp-radius-md);
  border: 2px solid var(--lp-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-secondary);
  box-shadow: var(--lp-shadow);
}
.lp-founder__copy .lp-section-h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 24px; }
.lp-founder__copy p { font-size: 16px; line-height: 1.65; color: var(--lp-text); margin-bottom: 16px; }
.lp-founder__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.lp-pill--dark {
  background: var(--lp-secondary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .lp-founder { padding: 60px 0; }
  .lp-founder__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- FAQ ---------- */
.lp-faq { padding: 96px 0; background: var(--lp-bg-alt); }
.lp-faq .lp-section-h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-faq__list { max-width: 860px; margin: 48px auto 0; }
.lp-faq__item {
  background: #fff;
  border-radius: var(--lp-radius-md);
  box-shadow: var(--lp-shadow);
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-faq__q {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-secondary);
  text-align: left;
  cursor: pointer;
}
.lp-faq__q:hover { color: var(--lp-primary); }
.lp-faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s ease;
}
.lp-faq__a {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq__a p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 16px;
  color: var(--lp-text);
  line-height: 1.6;
}
.lp-faq__item--open .lp-faq__a {
  max-height: 400px;
}
.lp-faq__item--open .lp-faq__toggle { transform: rotate(45deg); }

/* ---------- Risk Reversal ---------- */
.lp-risk { padding: 96px 0; background: #fff; }
.lp-risk__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lp-risk__card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-top: 4px solid var(--lp-primary);
  border-radius: var(--lp-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--lp-shadow);
}
.lp-risk__icon { width: 140px; height: 140px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; }
.lp-risk__icon svg, .lp-risk__icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-risk__h { font-size: 22px; font-weight: 800; color: var(--lp-secondary); margin: 0 0 12px; }
.lp-risk__card p { font-size: 16px; color: var(--lp-text-light); margin: 0; }
.lp-risk__stripe {
  background: var(--lp-accent);
  color: var(--lp-secondary);
  text-align: center;
  padding: 14px 24px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--lp-radius-md);
}
@media (max-width: 960px) {
  .lp-risk { padding: 60px 0; }
  .lp-risk__cards { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Final CTA + Form ---------- */
.lp-cta { background: var(--lp-primary); color: #fff; padding: 96px 0; }
.lp-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.lp-cta__h {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}
.lp-cta__sub { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 24px; line-height: 1.55; }
.lp-cta__bullets { margin: 0 0 28px; }
.lp-cta__bullets li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #fff;
  font-size: 16px;
}
.lp-cta__bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.lp-cta__call-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 24px 0 4px;
}
.lp-cta__phone {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.lp-cta__phone:hover { color: #fff; opacity: 0.9; }

/* ---------- Form ---------- */
.lp-cta__formwrap {}
.lp-form {
  background: #fff;
  color: var(--lp-text);
  padding: 36px 32px;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
}
.lp-form__h {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--lp-secondary);
  margin: 0 0 24px;
}
.lp-form__field {
  display: block;
  margin-bottom: 16px;
}
.lp-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-secondary);
  margin-bottom: 6px;
}
.lp-form input,
.lp-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  font: inherit;
  font-size: 15px;
  color: var(--lp-text);
  background: #fff;
  transition: border-color 0.15s ease;
}
.lp-form input:focus,
.lp-form select:focus { outline: none; border-color: var(--lp-primary); box-shadow: 0 0 0 3px rgba(225, 49, 36, 0.12); }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-form__reassure {
  font-size: 13px;
  color: var(--lp-text-light);
  text-align: center;
  margin: 14px 0 0;
}
.lp-form__error {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
}
@media (max-width: 960px) {
  .lp-cta { padding: 60px 0; }
  .lp-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-form { padding: 28px 22px; }
  .lp-form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.lp-footer { background: var(--lp-secondary); color: #fff; padding: 56px 0 24px; }
.lp-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.lp-footer__col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin: 0 0 12px;
}
.lp-footer__col p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0 0 6px; }
.lp-footer__col a { color: rgba(255,255,255,0.85); text-decoration: none; }
.lp-footer__col a:hover { color: #fff; text-decoration: underline; }
.lp-footer__logo { width: 160px; height: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.lp-footer__tag { font-size: 13px; color: rgba(255,255,255,0.7); }
.lp-footer__badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 14px;
  border-radius: var(--lp-radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.lp-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.6;
}
.lp-footer__legal a { color: rgba(255,255,255,0.65); }
.lp-footer__legal a:hover { color: #fff; }
@media (max-width: 960px) {
  .lp-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .lp-footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Sticky Mobile CTA ---------- */
.lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: var(--lp-primary);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--lp-radius-md);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 50;
  text-decoration: none;
}
@media (max-width: 640px) {
  .lp-sticky-cta { display: block; }
}
