/* NIXON ad landing page — injected above quote builder when LANDING_PAGE=true */

#quote-builder {
  scroll-margin-top: 0;
}

#quote-builder .qb-top {
  display: none;
}

.lp {
  --lp-tangerine: #FF9000;
  --lp-tangerine-hover: #e68200;
  --lp-slate: #333F48;
  --lp-deep: #1a2330;
  --lp-brighte: #16C79A;
  --lp-brighte-head: #2FD6A8;
  --lp-brighte-body: #16C79A;
  --lp-white: #FFFFFF;
  --lp-max: 1280px;
  --lp-display: 'Lemon Milk', 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --lp-font: 'Coolvetica', 'Outfit', 'Segoe UI', system-ui, sans-serif;
  font-family: var(--lp-font);
  color: var(--lp-slate);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  min-height: clamp(620px, 84vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--lp-white);
}

.lp-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-video {
    display: none;
  }

  .lp-hero-media {
    background: url('../assets/images/landing-hero.jpg') center center / cover no-repeat;
  }
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 35, 48, 0.55) 0%, rgba(26, 35, 48, 0.12) 24%, rgba(26, 35, 48, 0.16) 56%, rgba(26, 35, 48, 0.72) 100%),
    linear-gradient(60deg, rgba(26, 35, 48, 0.5) 0%, rgba(26, 35, 48, 0.1) 46%, rgba(26, 35, 48, 0) 70%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 32px 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  gap: clamp(40px, 6vh, 72px);
}

.lp-hero-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo img {
  height: 120px;
  width: auto;
}

.lp-hero-actions {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-top: 10px;
}

.lp-hero-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}

.lp-hero-action-hint {
  font-family: var(--lp-font);
  font-size: 0.7rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  white-space: nowrap;
}

.lp-hero-action-or {
  flex-shrink: 0;
  margin-inline: 2px;
  padding-bottom: 11px;
  font-family: var(--lp-font);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.lp-hero-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--lp-font);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  white-space: nowrap;
  color: var(--lp-white) !important;
  transition: background 0.2s ease;
}

.lp-hero-action-btn--dark {
  background: #000;
  border-color: rgba(255, 255, 255, 0.12);
}

.lp-hero-action-btn--dark:hover {
  background: #0f151d;
}

.lp-hero-action-btn--phone {
  background: var(--lp-tangerine);
}

.lp-hero-action-btn--phone:hover {
  background: var(--lp-tangerine-hover);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.lp-hero-title {
  font-family: var(--lp-display);
  font-size: clamp(2.3rem, 5.6vw, 4.3rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--lp-white);
}

.lp-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 4px;
}

.lp-hero-sub {
  font-family: var(--lp-font);
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 48ch;
}

.lp-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  background: var(--lp-tangerine);
  color: var(--lp-white) !important;
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(255, 144, 0, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-hero-btn:hover {
  background: var(--lp-tangerine-hover);
  transform: translateY(-1px);
}

.lp-hero-fine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  font-family: var(--lp-font);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}

.lp-fine-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Trust bar ────────────────────────────────────────────────────────── */

.lp-trust {
  background: var(--lp-tangerine);
  color: var(--lp-white);
}

.lp-trust-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.lp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 4px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.lp-trust-item:last-child {
  border-right: none;
}

.lp-trust-ico {
  width: auto;
  height: 36px;
  flex-shrink: 0;
}

.lp-trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-trust-title {
  font-family: var(--lp-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.lp-trust-detail {
  font-family: var(--lp-font);
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.88;
}

/* ── Process ────────────────────────────────────────────────────────── */

.lp-process {
  background: #f5f7fa;
  padding: clamp(52px, 6vw, 76px) 40px clamp(60px, 7vw, 84px);
}

.lp-process-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  text-align: left;
}

.lp-process-title {
  font-family: var(--lp-font);
  font-size: clamp(2.05rem, 4vw, 2.85rem);
  font-weight: 400;
  color: var(--lp-slate);
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.12;
}

.lp-process-lead {
  font-family: var(--lp-font);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  font-weight: 400;
  color: #4a5560;
  max-width: 58ch;
  margin: 0 0 48px;
  line-height: 1.5;
}

.lp-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  align-items: stretch;
  overflow: visible;
}

/* Orange connector line running through the middle of the step numbers */
.lp-steps-wrap {
  position: relative;
}

.lp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--lp-white);
  border: 1px solid #e2e6ec;
  border-right: none;
  overflow: visible;
}

.lp-step:first-child {
  border-radius: 16px 0 0 16px;
}

.lp-step:last-child {
  border-right: 1px solid #e2e6ec;
  border-radius: 0 16px 16px 0;
}

/* Orange accent bar along the top of every card */
.lp-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lp-tangerine);
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Arrow chevron between cards */
.lp-step:not(:last-child)::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 3;
  pointer-events: none;
  font-size: 0.65rem;
  color: var(--lp-white);
  background: var(--lp-tangerine);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 22px;
  text-align: center;
}

.lp-step-tag {
  font-family: var(--lp-font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--lp-white);
  background: var(--lp-tangerine);
  border-radius: 5px;
  padding: 7px 12px;
  margin-bottom: 24px;
  line-height: 1;
  align-self: center;
}

.lp-step-ico {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  margin-bottom: 18px;
}

.lp-step-label {
  font-family: var(--lp-font);
  font-size: clamp(0.92rem, 1.2vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--lp-slate);
  text-align: center;
  line-height: 1.22;
  text-transform: uppercase;
}

/* ── Brighte ────────────────────────────────────────────────────────── */

.lp-brighte {
  background: #141414;
  color: var(--lp-white);
  padding: clamp(32px, 4vw, 48px) 40px;
}

.lp-brighte-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.lp-brighte-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lp-brighte-logo {
  display: block;
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.lp-brighte-divider {
  width: 1px;
  height: 18px;
  background: var(--lp-brighte);
  flex-shrink: 0;
  opacity: 0.8;
}

.lp-brighte-partner {
  font-family: var(--lp-font);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--lp-brighte);
  letter-spacing: 0.01em;
  line-height: 1;
}

.lp-brighte-title {
  font-family: var(--lp-font);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  color: var(--lp-white);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.lp-brighte-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-brighte-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font);
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.lp-brighte-list .fa-check {
  color: var(--lp-brighte);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Card */
.lp-brighte-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.lp-brighte-card-head {
  background: var(--lp-brighte-head);
  padding: 10px 18px;
  text-align: center;
  font-family: var(--lp-font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-white);
}

.lp-brighte-card-body {
  background: var(--lp-brighte-body);
  padding: 18px 24px 18px;
  text-align: center;
}

.lp-brighte-card-from {
  font-family: var(--lp-font);
  font-size: 0.82rem;
  opacity: 0.9;
  margin-bottom: 2px;
}

.lp-brighte-card-amt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.lp-brighte-card-price {
  font-family: var(--lp-font);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.lp-brighte-card-period {
  font-family: var(--lp-font);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

.lp-brighte-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  border-radius: 7px;
  background: var(--lp-white);
  color: var(--lp-deep) !important;
  font-family: var(--lp-font);
  font-size: 0.84rem;
  font-weight: 400;
  text-decoration: none !important;
  transition: box-shadow 0.2s ease;
}

.lp-brighte-card-btn:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .lp-hero-title {
    max-width: none;
  }

  .lp-trust-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .lp-trust-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 24px;
  }

  .lp-trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

}

@media (max-width: 768px) {
  .lp-hero {
    min-height: clamp(520px, 82svh, 680px);
  }

  .lp-hero-inner {
    padding: 20px 20px 40px;
    gap: 32px;
  }

  .lp-hero-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lp-logo img {
    height: 92px;
  }

  .lp-hero-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    padding-top: 0;
  }

  .lp-hero-action {
    align-items: stretch;
    max-width: none;
  }

  .lp-hero-action-hint {
    text-align: left;
    font-size: 0.72rem;
    white-space: normal;
  }

  .lp-hero-action-or {
    align-self: center;
    padding-bottom: 0;
  }

  .lp-hero-action-btn {
    min-height: 38px;
    font-size: 0.78rem;
  }

  .lp-hero-title {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
    line-height: 1.08;
  }

  .lp-hero-aside {
    gap: 16px;
    width: 100%;
  }

  .lp-hero-btn {
    width: 100%;
    padding: 14px 24px;
  }

  .lp-hero-fine {
    font-size: 0.7rem;
    gap: 8px 12px;
  }

  .lp-trust-inner {
    padding: 22px 20px;
    gap: 20px;
  }

  .lp-trust-item {
    padding-bottom: 20px;
    gap: 14px;
  }

  .lp-trust-ico {
    height: 30px;
  }

  .lp-trust-title {
    font-size: 0.94rem;
  }

  .lp-trust-detail {
    font-size: 0.78rem;
  }

  .lp-process {
    padding: 44px 20px 52px;
  }

  .lp-process-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
  }

  .lp-process-lead {
    margin-bottom: 36px;
    font-size: 0.98rem;
  }

  .lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
  }

  .lp-step {
    padding: 24px 14px 20px;
    border-right: none;
    border-bottom: none;
    overflow: visible;
  }

  /* Top-left */
  .lp-step:nth-child(1) { border-radius: 14px 0 0 0; }
  /* Top-right */
  .lp-step:nth-child(2) { border-right: 1px solid #e2e6ec; border-radius: 0 14px 0 0; }
  /* Bottom-left */
  .lp-step:nth-child(3) { border-bottom: 1px solid #e2e6ec; border-radius: 0 0 0 14px; }
  /* Bottom-right */
  .lp-step:nth-child(4) { border-right: 1px solid #e2e6ec; border-bottom: 1px solid #e2e6ec; border-radius: 0 0 14px 0; }

  /* Hide all arrows by default */
  .lp-step:not(:last-child)::after {
    content: none;
  }

  /* Step 1 → 2: right arrow on the shared vertical border */
  .lp-step:nth-child(1)::after {
    content: '\f054';
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translate(50%, -50%);
  }

  /* Step 3 → 4: right arrow on the shared vertical border */
  .lp-step:nth-child(3)::after {
    content: '\f054';
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translate(50%, -50%);
  }

  .lp-step-tag {
    font-size: 0.66rem;
    padding: 6px 10px;
    margin-bottom: 14px;
  }

  .lp-step-ico {
    height: 32px;
    margin-bottom: 14px;
  }

  .lp-step-label {
    font-size: 0.84rem;
  }

  .lp-brighte {
    padding: 22px 20px;
  }

  .lp-brighte-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-brighte-brand {
    margin-bottom: 10px;
  }

  .lp-brighte-title {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
    margin-bottom: 12px;
  }

  .lp-brighte-list {
    gap: 7px;
  }

  .lp-brighte-list li {
    font-size: 0.82rem;
    gap: 8px;
  }

  .lp-brighte-card {
    max-width: 260px;
    width: 100%;
    justify-self: center;
  }

  .lp-brighte-card-head {
    padding: 7px 12px;
    font-size: 0.62rem;
  }

  .lp-brighte-card-body {
    padding: 12px 16px 12px;
  }

  .lp-brighte-card-from {
    font-size: 0.72rem;
  }

  .lp-brighte-card-amt {
    gap: 2px;
    margin-bottom: 10px;
  }

  .lp-brighte-card-price {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .lp-brighte-card-period {
    font-size: 0.58rem;
  }

  .lp-brighte-card-btn {
    padding: 9px 14px;
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .lp-hero-fine {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .lp-fine-sep {
    display: none;
  }

  .lp-trust-text {
    min-width: 0;
  }
}
