/* ============================================================
   Landing-specific styles — extends site.css
   ============================================================ */

/* — Resets/base overrides for landing — */
.lp { font-family: var(--font-body); color: var(--fg); }
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }
.lp h1, .lp h2, .lp h3, .lp h4, .lp p { margin: 0; }
.lp a { color: inherit; text-decoration: none; }
.lp button { font-family: inherit; cursor: pointer; border: none; }
.lp button:not(.lp-btn) { background: none; padding: 0; }

/* Container */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Section padding */
.lp-section { padding: 88px 0; }
.lp-section.tight { padding: 56px 0; }
.lp-section.deep { background: var(--brand-deep); color: var(--fg-inverse); position: relative; overflow: hidden; }
.lp-section.deep .lp-eyebrow { color: var(--uh-blue-300); }
.lp-section.deep .lp-h2 { color: #fff; }
.lp-section.deep .lp-sub { color: rgba(255,255,255,0.78); }
.lp-section.surface { background: var(--bg-alt); }
.lp-section.tinted { background: var(--bg-tinted); }

/* Dark section depth glows + grid */
.lp-section.deep::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(19,118,214,0.32), transparent 38%),
    radial-gradient(circle at 92% 92%, rgba(225,29,44,0.22), transparent 40%);
}
.lp-section.deep::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, transparent 100%);
  opacity: 0.7;
}
.lp-section.deep > .lp-container { position: relative; z-index: 1; }

/* Eyebrow */
.lp-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; opacity: 0.55; border-radius: 2px; }

/* Headings (tight tracking) */
.lp-h1 { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 1.04; letter-spacing: -0.025em; color: inherit; text-wrap: balance; }
.lp-h2 { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.08; letter-spacing: -0.025em; color: var(--fg); text-wrap: balance; }
.lp-h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; color: var(--fg); }
.lp-h4 { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.35; letter-spacing: -0.01em; color: var(--fg); }

/* Body */
.lp-body { font-size: 16px; line-height: 1.55; font-weight: 500; color: var(--fg-muted); }
.lp-body-lg { font-size: 18px; line-height: 1.55; font-weight: 500; color: var(--fg-muted); }
.lp-small { font-size: 13px; line-height: 1.5; font-weight: 500; color: var(--fg-muted); }
.lp-caption { font-size: 12px; line-height: 1.4; font-weight: 500; color: var(--fg-subtle); }

/* Buttons */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 11px; font-weight: 800; font-size: 15px; letter-spacing: -0.005em; transition: all 130ms cubic-bezier(.2,.8,.2,1); cursor: pointer; white-space: nowrap; }
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn svg { width: 18px; height: 18px; }
.lp-btn-red { background: var(--accent); color: #fff; box-shadow: var(--shadow-cta-red); }
.lp-btn-red:hover { background: var(--accent-deep); box-shadow: 0 16px 34px rgba(225,29,44,0.42); }

/* Shimmer — sweeping light line for the hero offer CTA */
.lp-btn-shimmer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: lp-cta-pulse 2.4s ease-in-out infinite;
}
.lp-btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.15) 35%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.15) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
  animation: lp-shimmer 2.4s ease-in-out infinite;
}
@keyframes lp-shimmer {
  0%   { left: -150%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}
@keyframes lp-cta-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(7,47,95,0.34); }
  50%      { box-shadow: 0 14px 38px rgba(7,47,95,0.58); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-btn-shimmer { animation: none; }
  .lp-btn-shimmer::after { animation: none; display: none; }
}
.lp-btn-blue { background: var(--brand); color: #fff; box-shadow: var(--shadow-cta-blue); }
.lp-btn-blue:hover { background: var(--brand-deep); }
.lp-btn-outline { background: transparent; color: currentColor; border: 2px solid currentColor; }
.lp-btn-outline:hover { background: currentColor; }
.lp-btn-outline:hover span, .lp-btn-outline:hover svg { color: var(--bg); }
.lp-btn-ghost { background: transparent; color: inherit; }
.lp-btn-ghost:hover { background: rgba(0,0,0,0.04); }
.lp-btn-lg { padding: 18px 28px; font-size: 16px; }
.lp-btn-block { width: 100%; }

/* Pill / chip */
.lp-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; }
.lp-pill svg { width: 13px; height: 13px; }

/* Pulse dot */
.lp-pulse { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: lp-blink 1.6s infinite; }
.lp-pulse-red { background: var(--accent); }
@keyframes lp-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* Icon tile */
.lp-icon-tile { width: 44px; height: 44px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-icon-tile svg { width: 23px; height: 23px; stroke-width: 1.9; }
.lp-icon-tile.red { background: var(--accent-soft); color: var(--accent); }
.lp-icon-tile.yellow { background: var(--offer-soft); color: var(--uh-yellow-700); }
.lp-icon-tile.green { background: var(--success-soft); color: var(--success); }
.lp-icon-tile.lg { width: 56px; height: 56px; border-radius: 14px; }
.lp-icon-tile.lg svg { width: 28px; height: 28px; }

/* Card */
.lp-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); transition: all 130ms cubic-bezier(.2,.8,.2,1); }
.lp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,18,32,0.10); border-color: transparent; }

/* TopNav (minimal for LP) */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.lp-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  letter-spacing: -0.025em; color: var(--brand-deep);
}
.lp-nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em;
}
.lp-nav-right { display: flex; align-items: center; gap: 12px; }
.lp-nav-trust { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 600; color: var(--fg-muted); }
.lp-nav-trust > span { display: inline-flex; align-items: center; gap: 6px; }
.lp-nav-trust svg { width: 15px; height: 15px; color: var(--success); }
@media (max-width: 900px) {
  .lp-nav-trust { display: none; }
}

/* Sticky mobile bottom bar */
.lp-mobile-bar {
  display: none;
  position: sticky; bottom: 0; left: 0; right: 0; z-index: 40;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(11,18,32,0.08);
  padding: 12px 16px;
  gap: 10px;
}
.lp-mobile-bar .lp-btn { flex: 1; }
@media (max-width: 720px) {
  .lp-mobile-bar { display: flex; }
}

/* Star row */
.lp-stars { display: inline-flex; gap: 2px; color: var(--uh-yellow-500); }
.lp-stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

/* Footer */
.lp-foot { background: var(--brand-deep); color: rgba(255,255,255,0.7); padding: 48px 0 32px; }
.lp-foot a { color: rgba(255,255,255,0.85); }
.lp-foot a:hover { color: #fff; }
.lp-foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.lp-foot-grid h4 { color: #fff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.lp-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.lp-foot-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 16px; font-size: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .lp-foot-grid { grid-template-columns: 1fr 1fr; } }

/* Decorative number for step cards */
.lp-step-num {
  position: absolute; top: -18px; left: 24px;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  box-shadow: var(--shadow-cta-red);
}
.lp-step-num.blue { background: var(--brand); box-shadow: var(--shadow-cta-blue); }

/* Form field */
.lp-field { display: flex; flex-direction: column; gap: 6px; }
.lp-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: var(--fg); text-transform: uppercase; }
.lp-field input, .lp-field textarea, .lp-field select {
  width: 100%; padding: 14px 16px; border-radius: 11px;
  border: 2px solid var(--border); background: #fff;
  font-family: inherit; font-size: 15px; font-weight: 500; color: var(--fg);
  transition: border-color 130ms cubic-bezier(.2,.8,.2,1);
}
.lp-field input:focus, .lp-field textarea:focus, .lp-field select:focus {
  outline: none; border-color: var(--brand);
}
.lp-field textarea { min-height: 92px; resize: vertical; font-family: inherit; }

/* Image slot defaults inside landing */
.lp image-slot { width: 100%; height: 100%; display: block; }

/* Grids */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .lp-grid-3, .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; }
}

/* Trust bar */
.lp-trustbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; padding: 0;
  background: #fff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden;
}
.lp-trustbar > div {
  padding: 22px 24px; display: flex; align-items: center; gap: 14px;
  border-right: 1px solid var(--border);
}
.lp-trustbar > div:last-child { border-right: none; }
.lp-trustbar .lp-icon-tile { width: 40px; height: 40px; }
.lp-trustbar .lp-icon-tile svg { width: 20px; height: 20px; }
.lp-trustbar strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.015em; color: var(--fg); }
.lp-trustbar span { font-size: 12px; font-weight: 600; color: var(--fg-muted); }
@media (max-width: 900px) {
  .lp-trustbar { grid-template-columns: repeat(2, 1fr); }
  .lp-trustbar > div { border-right: none; border-bottom: 1px solid var(--border); }
  .lp-trustbar > div:nth-last-child(-n+2) { border-bottom: none; }
  .lp-trustbar > div:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* TCPA disclaimer */
.lp-tcpa {
  font-size: 11px;
  line-height: 1.45;
  color: var(--fg-subtle);
  font-weight: 500;
  margin: 6px 0 0;
}
.lp-tcpa a { color: var(--fg-muted); }

/* ============================================================
   Services grid — Pro-style image cards w/ orange ribbon labels
   ============================================================ */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.lp-service-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: visible;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
}
.lp-service-card:hover { transform: translateY(-4px); }
.lp-service-card:hover .lp-service-label {
  background: linear-gradient(180deg, #FF7A1A 0%, #E85D00 100%);
}
.lp-service-img {
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11,18,32,0.12);
}
.lp-service-img image-slot,
.lp-service-img [data-image-slot] {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.lp-service-card:hover .lp-service-img img {
  transform: scale(1.06);
}

/* Service slider — cross-fade */
.lp-svc-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.lp-svc-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(.4,0,.2,1);
}
.lp-svc-slide.is-active {
  opacity: 1;
}
.lp-svc-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.lp-svc-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 200ms;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.lp-svc-dot.is-active {
  background: #fff;
  width: 22px;
}
/* Orange ribbon label — angled cut on left, straight right */
.lp-service-label {
  position: absolute;
  left: 0;
  right: -16px;
  bottom: -18px;
  background: linear-gradient(180deg, #FF8533 0%, #F96302 100%);
  color: #fff;
  padding: 16px 20px 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 12px 26px rgba(249,99,2,0.30);
  transition: background 200ms;
}
.lp-service-label-text {
  flex: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}

@media (max-width: 980px) {
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-service-label { font-size: 17px; }
}
@media (max-width: 560px) {
  .lp-services-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   HERO v2 — Photo bg + USPs + risk-reversal hooks
   ============================================================ */
.lp-urgency-strip {
  background: linear-gradient(90deg, #C81D27 0%, #E11D2C 50%, #C81D27 100%);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.lp-urgency-strip strong { font-weight: 800; }
.lp-urgency-sep { opacity: 0.5; font-weight: 400; }
@media (max-width: 900px) {
  .lp-urgency-strip { font-size: 11.5px; gap: 8px; }
  .lp-urgency-strip .lp-urgency-extra { display: none; }
}

.lp-hero-v2 {
  position: relative;
  background: #0A0A0A;
  color: #fff;
  overflow: hidden;
  padding: 56px 0 80px;
  isolation: isolate;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.lp-hero-bg image-slot,
.lp-hero-bg [data-image-slot] {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,10,18,0.95) 0%, rgba(7,10,18,0.84) 45%, rgba(7,10,18,0.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.64) 100%);
}
.lp-hero-v2-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.lp-hero-v2-left { padding-top: 8px; }

.lp-hero-toprow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lp-award-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.lp-hero-mini-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mini-badge {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.lp-hero-reviews-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
  max-width: fit-content;
}

.lp-hero-v2-h1 {
  color: #fff !important;
  font-size: 60px !important;
  line-height: 1.04 !important;
  margin-bottom: 18px !important;
  letter-spacing: -0.025em;
  max-width: 720px;
}
.lp-h1-red { color: var(--brand-red); }
.lp-h1-yellow {
  display: inline-block;
  background: var(--uh-yellow-500);
  color: var(--brand-deep);
  padding: 0 12px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
}

.lp-hero-v2-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 0 28px;
}
.lp-hero-v2-sub strong { color: #fff; font-weight: 800; }

/* Cities served strip */
.lp-hero-cities {
  margin: 0 0 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-hero-cities-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-hero-cities-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.lp-hero-city-chip {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.lp-hero-city-more {
  background: var(--uh-yellow-500);
  border-color: var(--uh-yellow-500);
  color: var(--brand-deep);
  font-weight: 800;
}

/* 3 USP horizontal row */
.lp-hero-usp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.lp-hero-usp {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lp-hero-usp-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.lp-hero-usp-h {
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 3px;
}
.lp-hero-usp-b {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.lp-hero-v2-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-hero-v2-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

/* FORM SIDE */
.lp-hero-v2-form-wrap {
  position: relative;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.lp-form-phone-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, #B81020 100%);
  color: #fff;
  padding: 16px 24px 14px;
  border-radius: 18px 18px 0 0;
  text-align: center;
  position: relative;
}
.lp-form-phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp-form-phone-link:hover { opacity: 0.92; }
.lp-hero-v2-form {
  background: #fff;
  color: var(--fg);
  padding: 22px 24px 20px;
  border-radius: 0 0 18px 18px;
}
.lp-form-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lp-hero-v2-form .lp-form-sub {
  font-size: 12.5px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.lp-form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 600;
}
.lp-form-foot strong { color: var(--fg); }

/* Tighten the form's internal title when used in hero */
.lp-hero-v2-form .lp-form-title {
  font-size: 16px;
  margin-bottom: 2px;
}
.lp-hero-v2-form .lp-form-sub {
  font-size: 12.5px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .lp-hero-v2-h1 { font-size: 50px !important; }
  .lp-hero-usp-row { padding: 14px 16px; gap: 14px; }
  .lp-hero-usp-circle { width: 44px; height: 44px; }
  .lp-hero-usp-h { font-size: 13.5px; }
  .lp-hero-usp-b { font-size: 12px; }
}
@media (max-width: 1024px) {
  .lp-hero-v2-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-hero-v2-h1 { font-size: 44px !important; }
  .lp-hero-usp-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .lp-hero-v2-h1 { font-size: 34px !important; }
  .lp-hero-toprow { flex-direction: column; align-items: flex-start; }
  .lp-hero-usp-row { grid-template-columns: 1fr; }
  .lp-mini-badge { height: 36px; }
}

/* Top-nav SMS button — hide on very small screens */
.lp-nav-sms { display: inline-flex; }
@media (max-width: 720px) { .lp-nav-sms { display: none; } }

/* Real logo image in nav */
.lp-nav-logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
.lp-nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .lp-nav-logo-img { height: 40px; }
  .lp-nav-logo-text { font-size: 14px; }
}

/* Partners strip — circular award badges row */
.lp-partners {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; padding: 32px 0;
}
.lp-partners-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--fg-subtle);
}
.lp-partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
}
.lp-badge {
  height: 132px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1);
}
.lp-badge:hover { transform: scale(1.06) translateY(-2px); }
@media (max-width: 980px) {
  .lp-partners-row { gap: 20px; flex-wrap: wrap; }
  .lp-badge { height: 96px; }
}
@media (max-width: 640px) {
  .lp-badge { height: 76px; }
  .lp-partners-row { gap: 16px; }
}

/* City-pill in hero */
.lp-city-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* FAQ */
.lp-faq { background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.lp-faq-item { border-bottom: 1px solid var(--border); }
.lp-faq-item:last-child { border-bottom: none; }
.lp-faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--fg); }
.lp-faq-q:hover { background: var(--bg-alt); }
.lp-faq-q-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--fg-muted); transition: all 130ms cubic-bezier(.2,.8,.2,1); }
.lp-faq-item.open .lp-faq-q-icon { background: var(--brand); color: #fff; transform: rotate(45deg); }
.lp-faq-a { padding: 0 24px 22px 24px; color: var(--fg-muted); font-size: 15px; line-height: 1.6; }
