/* =========================================================================
   Fleet 2 Dealer — Landing page
   Modern, dark SaaS treatment. Scoped under `.landing-page` and the `lp-`
   prefix so we don't collide with the global app styles in styles.css.
   Color palette is the existing "rocket flame" set defined in styles.css.
   ========================================================================= */

/* ---------- Local tokens ---------- */
.landing-page {
  --lp-bg: #0f1320;
  --lp-bg-soft: #161b2c;
  --lp-surface: rgba(255, 255, 255, 0.04);
  --lp-surface-strong: rgba(255, 255, 255, 0.06);
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-border-strong: rgba(255, 255, 255, 0.14);
  --lp-text: #f1f3f8;
  --lp-text-muted: #9aa3b8;
  --lp-text-dim: #6c7589;

  --lp-accent: var(--rocket-flame-orange);
  --lp-accent-2: var(--rocket-flame-yellow);
  --lp-accent-3: var(--rocket-flame-red);
  --lp-success: var(--rocket-booster-green);

  --lp-radius-sm: 8px;
  --lp-radius: 14px;
  --lp-radius-lg: 22px;

  --lp-shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);

  --lp-font: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Page shell ---------- */
.landing-page,
.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page {
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.landing-page ::selection {
  background: var(--lp-accent);
  color: #0f1320;
}

/* Ambient background glow behind the hero */
.lp-bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 600px at 80% -10%,
      rgba(244, 124, 47, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 0% 10%,
      rgba(45, 108, 163, 0.18),
      transparent 60%
    ),
    radial-gradient(
      1200px 700px at 50% 110%,
      rgba(244, 211, 19, 0.06),
      transparent 70%
    );
}

/* Push everything above the glow */
.landing-page > *:not(.lp-bg-glow) {
  position: relative;
  z-index: 1;
}

.lp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================================
   Navigation
   ========================================================================= */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.85rem 0;
  background: rgba(15, 19, 32, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, backdrop-filter 200ms ease,
    border-color 200ms ease, padding 200ms ease;
}

.lp-nav.is-scrolled {
  background: rgba(15, 19, 32, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--lp-border);
  padding: 0.6rem 0;
}

.lp-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lp-text);
}

.lp-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f1320;
  background: linear-gradient(
    135deg,
    var(--lp-accent-2) 0%,
    var(--lp-accent) 60%,
    var(--lp-accent-3) 100%
  );
  box-shadow: 0 6px 18px rgba(244, 124, 47, 0.35);
}

.lp-logo-text {
  font-size: 1rem;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.lp-nav-links a {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.lp-nav-links a:hover {
  color: var(--lp-text);
}

.lp-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 150ms ease, color 150ms ease,
    border-color 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn-lg {
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.98rem;
}

.lp-btn-primary {
  background: linear-gradient(
    135deg,
    var(--lp-accent) 0%,
    var(--rocket-flame-orange-dark) 100%
  );
  color: #fff;
  box-shadow: 0 8px 24px rgba(244, 124, 47, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.lp-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(244, 124, 47, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

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

.lp-btn-ghost:hover {
  background: var(--lp-surface-strong);
  border-color: var(--lp-border-strong);
}

/* =========================================================================
   Hero
   ========================================================================= */
.lp-hero {
  padding: 9.5rem 0 5rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem 0.45rem 0.7rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  margin-bottom: 1.5rem;
  transition: border-color 150ms ease, color 150ms ease;
}

.lp-badge:hover {
  color: var(--lp-text);
  border-color: var(--lp-border-strong);
}

.lp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-success);
  box-shadow: 0 0 0 4px rgba(78, 202, 148, 0.18);
}

.lp-badge-arrow {
  color: var(--lp-accent);
  font-weight: 600;
}

.lp-h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--lp-text);
  margin-bottom: 1.25rem;
}

.lp-grad {
  display: inline;
  background: linear-gradient(
    100deg,
    var(--lp-accent-2) 0%,
    var(--lp-accent) 50%,
    var(--lp-accent-3) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-sub {
  font-size: 1.1rem;
  color: var(--lp-text-muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--lp-text-muted);
}

.lp-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-trust span {
  color: var(--lp-success);
  font-weight: 700;
}

/* Hero visual stack */
.lp-hero-visual {
  position: relative;
  min-height: 480px;
}

.lp-hero-card {
  position: absolute;
  background: rgba(22, 27, 44, 0.85);
  border: 1px solid var(--lp-border-strong);
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-hero-card-main {
  inset: 0;
  overflow: hidden;
  transform: rotate(-1.5deg);
}

.lp-hero-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--lp-border);
}

.lp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.lp-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 19, 32, 0) 40%,
    rgba(15, 19, 32, 0.55) 100%
  );
}

.lp-hero-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
}

.lp-hero-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(78, 202, 148, 0.14);
  color: var(--lp-success);
  border: 1px solid rgba(78, 202, 148, 0.3);
}

.lp-hero-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-hero-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 0.35rem;
}

.lp-hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  margin-bottom: 1rem;
}

.lp-hero-card-actions {
  display: flex;
  gap: 0.5rem;
}

.lp-mini-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-mini-btn-primary {
  background: var(--lp-accent);
  color: #fff;
  border-color: transparent;
}

.lp-hero-card-float,
.lp-hero-card-float-2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  border-radius: var(--lp-radius);
  background: rgba(22, 27, 44, 0.92);
}

.lp-hero-card-float {
  bottom: -28px;
  left: -34px;
  max-width: 280px;
  transform: rotate(-3deg);
}

.lp-hero-card-float-2 {
  top: -22px;
  right: -22px;
  transform: rotate(2deg);
}

.lp-hero-card-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--lp-accent),
    var(--lp-accent-3)
  );
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-hero-card-mini-title {
  font-weight: 600;
  color: var(--lp-text);
  font-size: 0.9rem;
}

.lp-hero-card-mini-meta {
  font-size: 0.78rem;
  color: var(--lp-text-muted);
  margin-top: 2px;
}

/* =========================================================================
   Built-for / trust strip
   ========================================================================= */
.lp-strip {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.015);
}

.lp-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem 1.4rem;
  text-align: center;
}

.lp-strip-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--lp-text-dim);
  font-weight: 600;
  margin-right: 0.5rem;
}

.lp-strip-item {
  font-size: 0.95rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-strip-sep {
  color: var(--lp-text-dim);
}

/* =========================================================================
   Generic section
   ========================================================================= */
.lp-section {
  padding: 6rem 0;
}

.lp-section-alt {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012),
      rgba(255, 255, 255, 0)
    );
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lp-accent);
  margin-bottom: 0.9rem;
}

.lp-h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 0.85rem;
}

.lp-section-sub {
  color: var(--lp-text-muted);
  font-size: 1.05rem;
}

/* =========================================================================
   Features
   ========================================================================= */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-feature {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease,
    background 200ms ease;
}

.lp-feature:hover {
  transform: translateY(-3px);
  border-color: var(--lp-border-strong);
  background: var(--lp-surface-strong);
}

.lp-feature-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.lp-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.lp-feature:hover .lp-feature-media img {
  transform: scale(1.04);
}

.lp-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 19, 32, 0) 50%,
    rgba(15, 19, 32, 0.6) 100%
  );
}

.lp-feature-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.lp-feature-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lp-accent);
  margin-bottom: 0.6rem;
}

.lp-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin-bottom: 0.6rem;
}

.lp-feature-text {
  color: var(--lp-text-muted);
  font-size: 0.95rem;
}

/* =========================================================================
   How it works — steps
   ========================================================================= */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.lp-step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
}

.lp-step-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: transparent;
  background: linear-gradient(
    135deg,
    var(--lp-accent-2),
    var(--lp-accent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
}

.lp-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--lp-text);
}

.lp-step-text {
  color: var(--lp-text-muted);
  font-size: 0.95rem;
}

/* =========================================================================
   Audience split
   ========================================================================= */
.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.lp-audience {
  position: relative;
  padding: 2.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
}

.lp-audience::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(244, 124, 47, 0.28),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.lp-audience-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(244, 124, 47, 0.12);
  color: var(--lp-accent);
  border: 1px solid rgba(244, 124, 47, 0.3);
  margin-bottom: 1.25rem;
}

.lp-audience-tag-alt {
  background: rgba(45, 108, 163, 0.16);
  color: #6ea7d6;
  border-color: rgba(45, 108, 163, 0.4);
}

.lp-audience-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lp-text);
  margin-bottom: 1.25rem;
}

.lp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.lp-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--lp-text-muted);
  margin-bottom: 0.6rem;
  font-size: 0.96rem;
}

.lp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--lp-accent-2),
    var(--lp-accent)
  );
  box-shadow: 0 0 0 3px rgba(244, 124, 47, 0.14);
}

.lp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 150ms ease, color 150ms ease;
}

.lp-link-arrow:hover {
  color: #fff;
  gap: 0.65rem;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.lp-faq-wrap {
  max-width: 820px;
}

.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: border-color 150ms ease, background 150ms ease;
}

.lp-faq-item[open] {
  border-color: var(--lp-border-strong);
  background: var(--lp-surface-strong);
}

.lp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

/* Neutralize the global `details summary::before` triangle defined in styles.css */
.landing-page .lp-faq-item summary::before,
.landing-page .lp-faq-item[open] summary::before {
  content: none;
  margin: 0;
}

/* Neutralize the global `details + details` 20px margin */
.landing-page .lp-faq .lp-faq-item + .lp-faq-item {
  margin-top: 0;
}

.lp-faq-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lp-surface-strong);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  font-size: 1rem;
  line-height: 1;
  transition: transform 200ms ease, background 150ms ease, color 150ms ease;
  flex-shrink: 0;
}

.lp-faq-item[open] .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--lp-accent);
  color: #fff;
  border-color: transparent;
}

.lp-faq-body {
  padding: 0 1.4rem 1.25rem;
  color: var(--lp-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* =========================================================================
   Final CTA
   ========================================================================= */
.lp-cta-section {
  padding: 4rem 0 6rem;
}

.lp-cta-card {
  position: relative;
  padding: 3rem;
  background:
    radial-gradient(
      600px 300px at 10% 0%,
      rgba(244, 124, 47, 0.18),
      transparent 60%
    ),
    radial-gradient(
      500px 280px at 100% 100%,
      rgba(244, 211, 19, 0.12),
      transparent 60%
    ),
    rgba(22, 27, 44, 0.6);
  border: 1px solid var(--lp-border-strong);
  border-radius: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.lp-cta-card-copy {
  max-width: 32rem;
}

.lp-cta-card-copy .lp-h2 {
  margin-bottom: 0.5rem;
}

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

/* =========================================================================
   Footer
   ========================================================================= */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 3rem 0 2.5rem;
  background: rgba(15, 19, 32, 0.6);
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lp-footer-tag {
  color: var(--lp-text-muted);
  font-size: 0.9rem;
  max-width: 24rem;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-self: center;
}

.lp-footer-links a {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.lp-footer-links a:hover {
  color: var(--lp-text);
}

.lp-footer-meta {
  grid-column: 1 / -1;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
  font-size: 0.85rem;
  color: var(--lp-text-dim);
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .lp-hero {
    padding: 5.5rem 0 3.5rem;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .lp-hero-visual {
    min-height: 440px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .lp-feature-grid,
  .lp-steps,
  .lp-audience-grid {
    grid-template-columns: 1fr;
  }
  .lp-section {
    padding: 4.5rem 0;
  }
  .lp-cta-card {
    padding: 2.25rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .lp-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lp-nav-links {
    display: none;
  }
  .lp-nav-inner {
    gap: 1rem;
  }
  .lp-nav-cta {
    margin-left: auto;
  }
  .lp-hero {
    padding: 4.5rem 0 2.5rem;
  }
  .lp-cta-row .lp-btn {
    flex: 1 1 auto;
  }
  .lp-hero-card-float {
    left: -10px;
    bottom: -36px;
  }
  .lp-hero-card-float-2 {
    right: -8px;
  }
  .lp-hero-img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .lp-container {
    padding: 0 1.1rem;
  }
  .lp-nav-cta .lp-btn-ghost {
    display: none;
  }
  .lp-cta-card {
    padding: 1.75rem;
  }
  .lp-cta-card-actions {
    width: 100%;
  }
  .lp-cta-card-actions .lp-btn {
    flex: 1;
  }
}

/* =========================================================================
   Contact / Request Access page
   ========================================================================= */
.lp-contact-section {
  padding: 8.5rem 0 5rem;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.lp-contact-copy {
  padding-top: 1rem;
}

.lp-contact-copy .lp-h2 {
  margin-bottom: 0.6rem;
}

.lp-contact-perks {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-contact-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.lp-contact-perk-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(78, 202, 148, 0.12);
  color: var(--lp-success);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(78, 202, 148, 0.25);
}

.lp-contact-perks strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-text);
  margin-bottom: 0.2rem;
}

.lp-contact-perks p {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  line-height: 1.45;
}

/* Form card */
.lp-contact-form-wrap {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2.25rem;
}

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lp-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--lp-text);
}

.lp-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--lp-font);
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  outline: none;
  transition: border-color 150ms ease, background 150ms ease,
    box-shadow 150ms ease;
  box-sizing: border-box;
}

.lp-input::placeholder {
  color: var(--lp-text-dim);
}

.lp-input:focus {
  border-color: var(--lp-accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(244, 124, 47, 0.12);
}

.lp-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239aa3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.lp-select option {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
}

.lp-textarea {
  resize: vertical;
  min-height: 90px;
}

.lp-btn-full {
  width: 100%;
  margin-top: 0.25rem;
}

/* Contact responsive */
@media (max-width: 820px) {
  .lp-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lp-contact-section {
    padding: 4.5rem 0 2.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .lp-contact-form-wrap {
    padding: 1.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .lp-btn,
  .lp-feature,
  .lp-feature-media img,
  .lp-link-arrow,
  .lp-faq-icon,
  .lp-nav,
  .lp-input {
    transition: none !important;
  }
  .lp-btn:hover,
  .lp-feature:hover {
    transform: none;
  }
}
