/* ============================================================
   VYN — Google Ads landing pages
   Layered ON TOP of /css/styles.css. Never redefines the brand,
   only extends it: same red, same black, same radius, same
   button vocabulary. Everything here is scoped to .lp so it
   cannot leak into the main site.

   Structure of a landing page (single conversion goal):
     rail > brandbar > hero(+lead form) > honesty > helps >
     steps > bring > trust > faq > final CTA > footer > mobile bar
   ============================================================ */

.lp {
  /* Semantic tokens — resolved from the site's brand variables */
  --lp-red: var(--color-red, #dc2626);
  --lp-red-deep: #b91c1c;
  --lp-red-wash: #fef2f2;
  --lp-ink: var(--color-black, #111827);
  --lp-ink-soft: #374151;
  --lp-muted: #6b7280;
  --lp-line: #e5e7eb;
  --lp-line-strong: #d1d5db;
  --lp-surface: #ffffff;
  --lp-sunk: #f7f8fa;

  --lp-radius: 0.5rem;
  --lp-radius-lg: 0.875rem;
  --lp-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
  --lp-shadow-card: 0 1px 3px rgba(17, 24, 39, 0.06), 0 18px 40px -20px rgba(17, 24, 39, 0.28);
  --lp-shadow-bar: 0 1px 0 var(--lp-line), 0 6px 20px -12px rgba(17, 24, 39, 0.25);

  /* Type scale — 5 sizes, nothing else */
  --lp-t-display: clamp(2rem, 1.35rem + 2.6vw, 3.1rem);
  --lp-t-h2: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem);
  --lp-t-h3: 1.125rem;
  --lp-t-body: 1.0625rem;
  --lp-t-small: 0.875rem;

  color: var(--lp-ink);
  background: var(--lp-surface);
}

.lp .container {
  max-width: 1160px;
}

/* Service pages carry the real site header, which is position:fixed, so the
   page has to clear it — same clearance the rest of the site uses via
   .main-content. The value tracks the header's own height at each breakpoint. */
.lp-main {
  display: block;
  padding-top: 7.5rem;
}

@media (max-width: 1279px) {
  .lp-main {
    padding-top: 6.5rem;
  }
}

@media (max-width: 767px) {
  .lp-main {
    padding-top: 5.5rem;
  }
}

/* The lead form is the target of the skip link and the hero CTA; keep it clear
   of the fixed header when it is scrolled to. */
.lp-lead-card {
  scroll-margin-top: 8rem;
}

/* ---- Shared section rhythm ---------------------------------- */
.lp-section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .lp-section {
    padding: 4.5rem 0;
  }
}

.lp-section--sunk {
  background: var(--lp-sunk);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-section-head {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.lp-h2 {
  font-size: var(--lp-t-h2);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--lp-ink);
}

.lp-lead {
  font-size: var(--lp-t-body);
  line-height: 1.65;
  color: var(--lp-ink-soft);
  margin-top: 0.75rem;
  max-width: 42rem;
}

/* The eyebrow: small red label that names the exact ad theme. */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lp-red);
}

.lp-eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--lp-red);
  border-radius: 2px;
}

/* ============================================================
   1. Top rail + brand bar
   The site's identity compressed to one line. No nav links:
   an ad landing page has exactly one job.
   ============================================================ */

.lp-rail {
  height: 4px;
  background: var(--lp-red);
}

.lp-brandbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: var(--lp-shadow-bar);
}

.lp-brandbar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* The logo file is a square 1200x1200 mark, so height alone sizes it. */
.lp-brand-logo {
  height: 2.75rem;
  width: 2.75rem;
  display: block;
}

/* Visible at every width: someone arriving from an ad needs to see, instantly,
   which business they landed on. The logo mark alone does not say it. */
.lp-brand-text {
  display: block;
  line-height: 1.2;
}

.lp-brand-name {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--lp-ink);
}

/* The strapline is the part that gets dropped when space is tight, not the name. */
.lp-brand-sub {
  display: none;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

@media (min-width: 420px) {
  .lp-brand-sub {
    display: block;
  }
}

/* ---- Services menu -------------------------------------------
   One trigger opening a two-column panel of all 22 services. A page
   reached from an ad still has a single conversion goal, so the whole
   catalogue lives behind one control instead of a row of tabs
   competing with the Call button. */
.lp-menu {
  position: relative;
  margin-left: 0.5rem;
}

.lp-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: var(--lp-radius);
  background: transparent;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-ink-soft);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lp-menu-trigger:hover {
  background: var(--lp-sunk);
  color: var(--lp-ink);
}

.lp-menu-trigger svg {
  width: 0.9375rem;
  height: 0.9375rem;
  transition: transform 200ms ease;
}

.lp-menu-trigger[aria-expanded="true"] {
  background: var(--lp-sunk);
  border-color: var(--lp-line);
  color: var(--lp-ink);
}

.lp-menu-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lp-menu-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 60;
  width: min(38rem, calc(100vw - 2rem));
  padding: 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-card);
}

.lp-menu-panel[hidden] {
  display: none;
}

.lp-menu-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .lp-menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.lp-menu-head {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 0.5rem;
}

.lp-menu-head--gap {
  margin-top: 1rem;
}

.lp-menu-links {
  display: grid;
  gap: 0.125rem;
}

.lp-menu-links a {
  display: block;
  padding: 0.4375rem 0.5rem;
  margin-left: -0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--lp-ink-soft);
  transition: background-color 150ms ease, color 150ms ease;
}

.lp-menu-links a:hover {
  background: var(--lp-red-wash);
  color: var(--lp-red);
}

.lp-menu-links a[aria-current="page"] {
  color: var(--lp-red);
  font-weight: 700;
}

/* Language switch: a real link to the twin URL, not an in-page toggle. */
.lp-lang-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.6875rem;
  border: 1px solid var(--lp-line-strong);
  border-radius: var(--lp-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--lp-ink-soft);
  white-space: nowrap;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.lp-lang-link:hover {
  border-color: var(--lp-ink);
  color: var(--lp-ink);
  background: var(--lp-sunk);
}

.lp-licence {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.75rem;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  background: var(--lp-surface);
  white-space: nowrap;
  font-size: 0.75rem;
  color: var(--lp-ink-soft);
}

.lp-licence-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--lp-red);
  flex-shrink: 0;
}

.lp-brandbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .lp-brandbar-actions {
    margin-left: 1rem;
  }
}

/* Language toggle — same behaviour as the site header, smaller shell. */
.lp-lang {
  display: inline-flex;
  border: 1px solid var(--lp-line-strong);
  border-radius: var(--lp-radius);
  overflow: hidden;
  background: var(--lp-surface);
}

.lp-lang button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.5rem 0.625rem;
  min-height: 2.25rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background-color var(--transition-fast, 150ms), color var(--transition-fast, 150ms);
}

.lp-lang button:hover {
  background: var(--lp-sunk);
  color: var(--lp-ink);
}

.lp-lang button.active {
  background: var(--lp-ink);
  color: #fff;
}

/* The bar's call button. Phone is this business's primary conversion. */
.lp-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--lp-radius);
  background: var(--lp-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
  transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.lp-call-btn:hover {
  background: var(--lp-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -6px rgba(220, 38, 38, 0.45);
}

.lp-call-btn:active {
  transform: translateY(0);
}

.lp-call-btn svg {
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
}

.lp-call-btn .lp-call-label {
  display: none;
}

@media (min-width: 480px) {
  .lp-call-btn .lp-call-label {
    display: inline;
  }
}

/* ============================================================
   2. Hero
   Left: the ad's promise. Right: the form that answers it.
   ============================================================ */

.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f5f7 0%, #ffffff 62%);
  padding: 2.5rem 0 3rem;
}

@media (min-width: 960px) {
  .lp-hero {
    padding: 4rem 0 4.5rem;
  }
}

/* VYN's own icon pattern, used as a faint texture. Brand, not decoration. */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/logo-icons-pattern.svg');
  background-repeat: repeat;
  background-size: 340px auto;
  opacity: 0.035;
  pointer-events: none;
}

.lp-hero > .container {
  position: relative;
}

.lp-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    gap: 3rem;
  }
}

.lp-h1 {
  font-size: var(--lp-t-display);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--lp-ink);
  margin-top: 0.875rem;
  text-wrap: balance;
}

.lp-hero-copy {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--lp-ink-soft);
  margin-top: 1rem;
  max-width: 34rem;
}

/* Three facts the visitor needs before they trust a phone number. */
.lp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  list-style: none;
}

.lp-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.4375rem 0.75rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  font-size: var(--lp-t-small);
  font-weight: 600;
  color: var(--lp-ink-soft);
  box-shadow: var(--lp-shadow-sm);
}

.lp-proof svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--lp-red);
  flex-shrink: 0;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--lp-radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.lp-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.lp-btn--call {
  background: var(--lp-red);
  border-color: var(--lp-red);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(220, 38, 38, 0.55);
}

.lp-btn--call:hover {
  background: var(--lp-red-deep);
  border-color: var(--lp-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -8px rgba(220, 38, 38, 0.5);
}

.lp-btn--text {
  background: var(--lp-surface);
  border-color: var(--lp-line-strong);
  color: var(--lp-ink);
}

.lp-btn--text:hover {
  border-color: var(--lp-ink);
  transform: translateY(-2px);
}

.lp-btn--dark {
  background: var(--lp-ink);
  border-color: var(--lp-ink);
  color: #fff;
}

.lp-btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.lp-btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.lp-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-microcopy {
  margin-top: 0.875rem;
  font-size: var(--lp-t-small);
  color: var(--lp-muted);
}

/* ---- Lead card ---------------------------------------------- */
.lp-lead-card {
  position: relative;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-card);
  overflow: hidden;
  scroll-margin-top: 5.5rem;
}

/* The red rail again — ties the form to the page's top edge. */
.lp-lead-card::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--lp-red);
}

.lp-lead-card-inner {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .lp-lead-card-inner {
    padding: 1.75rem;
  }
}

.lp-lead-card h2 {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--lp-ink);
}

.lp-lead-card-sub {
  margin-top: 0.375rem;
  font-size: var(--lp-t-small);
  line-height: 1.55;
  color: var(--lp-muted);
}

.lp-form {
  margin-top: 1.25rem;
}

.lp-form .form-group {
  margin-bottom: 0.875rem;
}

.lp-form .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-ink-soft);
}

.lp-form .form-input {
  min-height: 2.875rem;
}

.lp-form textarea.form-input {
  min-height: 5rem;
}

/* Two short fields side by side once there is room. */
.lp-field-row {
  display: grid;
  gap: 0.875rem;
}

@media (min-width: 420px) {
  .lp-field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-form .btn-primary {
  width: 100%;
  margin: 0;
  min-height: 3rem;
  font-size: 1rem;
}

.lp-form .form-submit-wrapper {
  margin-top: 1rem;
}

/* Consent must stay fully visible (10DLC/TCR) but should not out-shout the
   button next to it. Smaller, not hidden. */
.lp-form .sms-optin {
  margin-top: 0.25rem;
}

.lp-form .sms-optin-text {
  font-size: 0.75rem;
  line-height: 1.5;
}

.lp-form-note {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--lp-muted);
}

.lp-form-note a {
  color: var(--lp-ink-soft);
  text-decoration: underline;
}

/* Alternative to the form, for people who would rather talk. */
.lp-form-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.125rem 0 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-form-or::before,
.lp-form-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--lp-line);
}

.lp-form-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border: 2px solid var(--lp-line-strong);
  border-radius: var(--lp-radius);
  font-weight: 700;
  color: var(--lp-ink);
  transition: border-color 200ms ease, background-color 200ms ease;
}

.lp-form-call:hover {
  border-color: var(--lp-red);
  color: var(--lp-red);
  background: var(--lp-red-wash);
}

.lp-form-call svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================================
   3. Honesty strip
   The "we are not the DMV" disclosure, said out loud on black
   rather than buried in fine print — it is also the offer.
   ============================================================ */

.lp-honesty {
  background: var(--lp-ink);
  color: #fff;
  padding: 1.375rem 0;
}

.lp-honesty-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.lp-honesty svg {
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  color: #fff;
  margin-top: 0.125rem;
}

.lp-honesty p {
  margin: 0;
  font-size: var(--lp-t-small);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.lp-honesty strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   4. What we help with — checklist
   ============================================================ */

.lp-checks {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

@media (min-width: 700px) {
  .lp-checks {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 2rem;
  }
}

.lp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  font-size: var(--lp-t-body);
  line-height: 1.45;
  color: var(--lp-ink-soft);
}

.lp-check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: var(--lp-red-wash);
  color: var(--lp-red);
  flex-shrink: 0;
  margin-top: 0.0625rem;
}

.lp-check-mark svg {
  width: 0.8125rem;
  height: 0.8125rem;
}

/* ============================================================
   5. How it works — numbered steps
   ============================================================ */

.lp-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: lp-step;
}

@media (min-width: 800px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.lp-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.375rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-sm);
}

.lp-step-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lp-red);
  opacity: 0.28;
  margin-bottom: 0.625rem;
}

.lp-step h3 {
  font-size: var(--lp-t-h3);
  font-weight: 700;
  color: var(--lp-ink);
  margin-bottom: 0.375rem;
}

.lp-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0;
}

/* ============================================================
   6. What to bring
   ============================================================ */

.lp-bring {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .lp-bring {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.lp-panel {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--lp-shadow-sm);
}

.lp-panel h3 {
  font-size: var(--lp-t-h3);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--lp-ink);
}

.lp-panel p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-bring-list {
  list-style: none;
  display: grid;
  gap: 0.625rem;
}

.lp-bring-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--lp-t-body);
  line-height: 1.5;
  color: var(--lp-ink-soft);
}

.lp-bring-list li::before {
  content: '';
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--lp-red);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.lp-panel--accent {
  background: var(--lp-red-wash);
  border-color: #fecaca;
}

.lp-panel--accent p {
  color: #7f1d1d;
}

/* Fee / eligibility notice. */
.lp-notice {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-left: 4px solid var(--lp-red);
  border-radius: var(--lp-radius);
  margin-top: 1.5rem;
}

.lp-notice p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lp-ink-soft);
}

.lp-notice strong {
  color: var(--lp-ink);
}

/* ============================================================
   6b. What it costs
   Two rows, always separated: VYN's fee and the government's fee
   are never shown as one number.
   ============================================================ */

.lp-cost {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

@media (min-width: 700px) {
  .lp-cost {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-cost-item {
  padding: 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-sm);
}

.lp-cost-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-red);
  margin-bottom: 0.5rem;
}

.lp-cost-item--gov h3 {
  color: var(--lp-muted);
}

.lp-cost-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lp-ink-soft);
}

/* ============================================================
   6c. Depth blocks — the situations VYN actually sees.
   Deliberately not another card grid: this is the reading part
   of the page, so it gets a measure and a rule, not a box.
   ============================================================ */

.lp-depth {
  display: grid;
  gap: 1.75rem;
  max-width: 46rem;
}

.lp-depth article {
  border-left: 3px solid var(--lp-red);
  padding-left: 1.25rem;
}

.lp-depth h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--lp-ink);
  margin-bottom: 0.5rem;
}

.lp-depth p {
  font-size: var(--lp-t-body);
  line-height: 1.7;
  color: var(--lp-ink-soft);
  max-width: 68ch;
}

.lp-depth p + p {
  margin-top: 0.625rem;
}

/* ============================================================
   9b. Related services
   ============================================================ */

.lp-related {
  display: grid;
  gap: 0.625rem;
}

@media (min-width: 700px) {
  .lp-related {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .lp-related {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.875rem 1rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-ink-soft);
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.lp-related a:hover {
  border-color: var(--lp-red);
  color: var(--lp-red);
  transform: translateY(-1px);
}

.lp-related a::after {
  content: '→';
  color: var(--lp-red);
  font-weight: 700;
}

/* ============================================================
   9c. Location block
   ============================================================ */

.lp-location {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .lp-location {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
}

.lp-location dl {
  display: grid;
  gap: 1rem;
}

.lp-location dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: 0.25rem;
}

.lp-location dd {
  font-size: var(--lp-t-body);
  line-height: 1.55;
  color: var(--lp-ink);
}

.lp-location dd a {
  color: var(--lp-red);
  font-weight: 600;
}

.lp-location dd a:hover {
  text-decoration: underline;
}

.lp-area {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--lp-ink-soft);
}

/* ============================================================
   7. Trust band — BBB seal, licences, real dealer logos
   ============================================================ */

/* Dark on purpose. Several of the real dealer logos are white-on-transparent
   and disappear on a light surface — on ink they all read, and the BBB seal
   carries its own white plate. */
.lp-section--trust {
  background: var(--lp-ink);
  border-top: 0;
  border-bottom: 0;
}

.lp-trust {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-trust {
    grid-template-columns: auto 1px 1fr;
    gap: 2.5rem;
  }
}

.lp-trust-seal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-trust-seal img {
  height: 3.25rem;
  width: auto;
}

.lp-trust-licences {
  display: grid;
  gap: 0.25rem;
  font-size: var(--lp-t-small);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lp-trust-licences strong {
  color: #fff;
  font-weight: 700;
}

.lp-trust-divide {
  display: none;
  background: rgba(255, 255, 255, 0.16);
  align-self: stretch;
}

@media (min-width: 900px) {
  .lp-trust-divide {
    display: block;
  }
}

.lp-trust-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.875rem;
}

.lp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}

/* These are real dealer logos of mixed quality — some are near-white on
   transparent. Grayscale + low opacity made them vanish on the light band,
   so they keep their own contrast and only sit back a little. */
.lp-logos img {
  height: 2.25rem;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 250ms ease;
}

.lp-logos img:hover {
  opacity: 1;
}

/* ============================================================
   8. FAQ
   ============================================================ */

.lp-faq {
  display: grid;
  gap: 0.625rem;
  max-width: 48rem;
}

.lp-faq details {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-faq details[open] {
  border-color: var(--lp-line-strong);
  box-shadow: var(--lp-shadow-sm);
}

.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.125rem;
  min-height: 3rem;
  font-size: var(--lp-t-body);
  font-weight: 600;
  color: var(--lp-ink);
  cursor: pointer;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid var(--lp-muted);
  border-bottom: 2px solid var(--lp-muted);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.lp-faq details[open] summary::after {
  transform: rotate(-135deg);
}

.lp-faq summary:hover {
  background: var(--lp-sunk);
}

.lp-faq-body {
  padding: 0 1.125rem 1.125rem;
}

.lp-faq-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--lp-ink-soft);
}

/* ============================================================
   9. Final CTA
   ============================================================ */

.lp-final {
  background: var(--lp-red);
  color: #fff;
  padding: 3rem 0;
}

.lp-final-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .lp-final-inner {
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
  }
}

.lp-final h2 {
  font-size: var(--lp-t-h2);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-final p {
  margin: 0.625rem 0 0;
  font-size: var(--lp-t-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
}

.lp-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-final .lp-btn--dark {
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   10. Footer
   ============================================================ */

.lp-footer {
  background: var(--lp-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0 6rem;
  font-size: var(--lp-t-small);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .lp-footer {
    padding-bottom: 2.5rem;
  }
}

.lp-footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .lp-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.lp-footer h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.lp-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.lp-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.lp-footer-links {
  display: grid;
  gap: 0.4375rem;
}

.lp-footer-logo {
  height: 2.75rem;
  width: 2.75rem;
  margin-bottom: 0.875rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.lp-disclosure {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
  max-width: 76ch;
}

/* ============================================================
   11. Sticky mobile contact bar
   Two thumb-sized targets, always reachable. Mobile only —
   desktop already has the sticky brand bar.
   ============================================================ */

.lp-mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--lp-line);
  box-shadow: 0 -6px 24px -12px rgba(17, 24, 39, 0.4);
}

.lp-mobilebar .lp-btn {
  min-height: 3rem;
  font-size: 0.9375rem;
  padding: 0.625rem 0.75rem;
}

@media (min-width: 768px) {
  .lp-mobilebar {
    display: none;
  }
}

/* ============================================================
   12. Accessibility + motion
   ============================================================ */

.lp a:focus-visible,
.lp button:focus-visible,
.lp summary:focus-visible,
.lp input:focus-visible,
.lp textarea:focus-visible,
.lp select:focus-visible {
  outline: 3px solid var(--lp-red);
  outline-offset: 2px;
  border-radius: 4px;
}

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  padding: 0.75rem 1rem;
  background: var(--lp-ink);
  color: #fff;
  border-radius: 0 0 var(--lp-radius) 0;
  font-weight: 600;
}

.lp-skip:focus {
  left: 0;
}

.lp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lp *,
  .lp *::before,
  .lp *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lp .lp-btn:hover,
  .lp .lp-call-btn:hover {
    transform: none;
  }
}
