/**
 * ENFORCE — 4th of July Travel Essentials landing
 * Scoped under .j4-lp (announce sits above)
 */

.j4-lp-page .j4-announce {
  background: #e8ecee;
  border-bottom: 1px solid #d8dcde;
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
}

.j4-lp {
  --j4-ink: #111111;
  --j4-muted: #555555;
  --j4-line: #e5e8ea;
  --j4-gray: #f3f4f4;
  --j4-white: #ffffff;
  --j4-accent: #558792;
  --j4-accent-dark: #466f78;
  --j4-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --j4-gutter: clamp(1.25rem, 4vw, 3.5rem);
  --j4-max: 1180px;
  --j4-section-y: clamp(2.75rem, 5vw, 4.5rem);
  color: var(--j4-ink);
  font-family: var(--j4-font);
  font-size: 16px;
  line-height: 1.6;
}

.j4-lp,
.j4-lp * {
  box-sizing: border-box;
}

.j4-lp a {
  color: var(--j4-accent);
  text-decoration: none;
}

.j4-lp a:hover {
  color: var(--j4-accent-dark);
}

.j4-lp__inner {
  width: 100%;
  max-width: var(--j4-max);
  margin: 0 auto;
  padding-left: var(--j4-gutter);
  padding-right: var(--j4-gutter);
}

/* Buttons */
.j4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--j4-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.j4-btn--primary {
  background: var(--j4-accent);
  color: #fff !important;
  border-color: var(--j4-accent);
}

.j4-btn--primary:hover {
  background: var(--j4-accent-dark);
  border-color: var(--j4-accent-dark);
  color: #fff !important;
}

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

.j4-btn--dark:hover {
  background: #000;
  border-color: #000;
  color: #fff !important;
}

.j4-btn--outline-light {
  background: #fff;
  color: var(--j4-ink) !important;
  border-color: var(--j4-ink);
}

.j4-btn--outline-light:hover {
  background: var(--j4-gray);
  color: var(--j4-ink) !important;
}

.j4-btn--outline {
  background: transparent;
  color: var(--j4-ink) !important;
  border-color: var(--j4-ink);
}

.j4-btn--outline:hover {
  background: var(--j4-ink);
  color: #fff !important;
}

.j4-btn--block {
  width: 100%;
}

/* Hero — left white wash + left-aligned ink copy */
.j4-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #d8d8d8;
  color: var(--j4-ink);
  margin: 0;
  padding: 0;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: center;
}

.j4-hero__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.j4-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 28%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 58%
  );
  pointer-events: none;
}

.j4-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--j4-max);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--j4-gutter);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.j4-hero__copy {
  max-width: 34rem;
  margin: 0;
}

.j4-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--j4-muted);
}

.j4-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--j4-ink);
}

.j4-hero__sub {
  margin: 0 0 1.75rem;
  max-width: 30rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}

.j4-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.j4-hero__pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 34rem;
}

.j4-hero__pills li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.3;
}

.j4-hero__pills svg {
  width: 22px;
  height: 22px;
  color: var(--j4-ink);
  flex-shrink: 0;
}

/* Benefits bar */
.j4-benefits {
  background: var(--j4-gray);
  border-bottom: 1px solid var(--j4-line);
  padding: 1.75rem 0;
}

.j4-benefits__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.j4-benefits__lead {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.j4-benefits__lead-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--j4-accent);
}

.j4-benefits__lead-icon svg {
  width: 100%;
  height: 100%;
}

.j4-benefits__lead h2 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--j4-ink);
}

.j4-benefits__lead p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--j4-muted);
}

.j4-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--j4-line);
  padding-left: 1.75rem;
}

.j4-benefits__item {
  text-align: center;
}

.j4-benefits__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.5rem;
  color: var(--j4-accent);
}

.j4-benefits__item-icon svg {
  width: 28px;
  height: 28px;
}

.j4-benefits__item span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--j4-ink);
  line-height: 1.35;
}

/* Hub + checklist */
.j4-hub {
  background: var(--j4-gray);
  padding: var(--j4-section-y) 0;
}

.j4-hub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 2.5rem 2.75rem;
  align-items: start;
}

.j4-hub__label {
  margin: 0 0 0.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--j4-accent);
}

.j4-hub__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--j4-ink);
}

.j4-hub__intro {
  margin: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.65;
  color: var(--j4-muted);
  max-width: 36rem;
}

.j4-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.j4-hub__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.j4-hub__row-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--j4-accent);
}

.j4-hub__row-icon svg {
  width: 100%;
  height: 100%;
}

.j4-hub__row h3 {
  margin: 0 0 0.25rem;
  font-size: 16px;
  font-weight: 700;
  color: var(--j4-ink);
}

.j4-hub__row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--j4-muted);
}

/* Checklist card */
.j4-check {
  background: var(--j4-white);
  border-top: 4px solid var(--j4-accent);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
}

.j4-check__eyebrow {
  margin: 0 0 1.15rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--j4-accent);
  text-align: center;
}

.j4-check__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.j4-check__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #eef0f1;
  font-size: 16px;
  line-height: 1.4;
  color: var(--j4-ink);
}

.j4-check__list li:last-child {
  border-bottom: none;
}

.j4-check__box {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1.5px solid #b8c0c4;
  border-radius: 2px;
  background: #fff;
}

/* Transport modes */
.j4-modes {
  background: #eceeef;
  padding: 2.5rem 0;
  text-align: center;
}

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

.j4-modes__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
}

.j4-modes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.j4-modes__icon {
  width: 42px;
  height: 42px;
  color: var(--j4-ink);
}

.j4-modes__icon svg {
  width: 100%;
  height: 100%;
}

.j4-modes__item span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--j4-ink);
}

.j4-modes__item p {
  margin: 0;
  max-width: 15rem;
  font-size: 14px;
  line-height: 1.45;
  color: var(--j4-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Deep dive + product */
.j4-deep {
  background: var(--j4-white);
  padding: var(--j4-section-y) 0 2rem;
}

.j4-deep__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 3.5rem;
  align-items: start;
}

.j4-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.j4-links li {
  border-bottom: 1px solid #e8e8e8;
}

.j4-links li:first-child {
  border-top: 1px solid #e8e8e8;
}

.j4-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0.15rem 1.35rem 0;
  color: var(--j4-ink) !important;
  text-decoration: none !important;
}

.j4-links a:hover .j4-links__title,
.j4-links a:hover .j4-links__chevron {
  color: var(--j4-accent);
}

.j4-links__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.j4-links__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--j4-ink);
}

.j4-links__desc {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #777777;
}

.j4-links__chevron {
  flex: 0 0 auto;
  font-size: 1.15em;
  font-weight: 400;
  color: #999999;
  line-height: 1;
}

.j4-aside-links {
  margin-bottom: 1.5rem;
}

.j4-aside-links__item {
  padding: 1.15rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.j4-aside-links__item:first-child {
  border-top: 1px solid #e8e8e8;
  padding-top: 1.15rem;
}

.j4-aside-links__item h3 {
  margin: 0 0 0.35rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--j4-ink);
}

.j4-aside-links__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #777777;
}

.j4-product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid #e4e4e4;
  background: #f6f6f6;
  overflow: hidden;
}

.j4-product__media {
  display: block;
  background: #e8e8e8;
  min-height: 100%;
  overflow: hidden;
}

.j4-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center 20%;
}

.j4-product__body {
  padding: 1.25rem 1.25rem 1.35rem 1rem;
  background: #f6f6f6;
}

.j4-product__name {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--j4-ink);
}

.j4-product__tagline {
  margin: 0 0 0.85rem;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
}

.j4-product__features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.j4-product__features li {
  position: relative;
  padding: 0.22rem 0 0.22rem 1.35rem;
  font-size: 14px;
  line-height: 1.4;
  color: #444444;
}

.j4-product__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 11px;
  height: 6px;
  border-left: 2px solid #8a8a8a;
  border-bottom: 2px solid #8a8a8a;
  transform: rotate(-45deg);
}

.j4-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.j4-product__actions .j4-btn {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 12px;
}

/* CTA band */
.j4-cta {
  background: transparent;
  padding: 0 0 var(--j4-section-y);
  text-align: center;
}

.j4-cta__panel {
  background: #e8eef0;
  padding: clamp(2.25rem, 4.5vw, 3.25rem) 1.5rem;
}

.j4-cta__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.85rem;
  color: var(--j4-accent);
}

.j4-cta__icon svg {
  width: 100%;
  height: 100%;
}

.j4-cta h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--j4-ink);
}

.j4-cta__panel > p {
  margin: 0 auto 1.35rem;
  max-width: 32rem;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

.j4-cta__panel .j4-btn {
  min-width: 240px;
}

/* FAQ */
.j4-faq {
  background: var(--j4-white);
  padding: var(--j4-section-y) 0;
}

.j4-faq__title {
  margin: 0 0 1.75rem;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--j4-ink);
}

.j4-faq__item {
  border-top: 1px solid var(--j4-line);
}

.j4-faq__item:last-child {
  border-bottom: 1px solid var(--j4-line);
}

.j4-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--j4-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--j4-ink);
  cursor: pointer;
}

.j4-faq__question:hover {
  color: var(--j4-accent);
}

.j4-faq__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.j4-faq__icon::before,
.j4-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--j4-ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.j4-faq__icon::before {
  width: 14px;
  height: 1.5px;
}

.j4-faq__icon::after {
  width: 1.5px;
  height: 14px;
  transition: opacity 0.15s ease;
}

.j4-faq__item.is-open .j4-faq__icon::after {
  opacity: 0;
}

.j4-faq__answer {
  padding: 0 1.5rem 1.15rem 0;
}

.j4-faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--j4-muted);
  max-width: 42rem;
}

.j4-faq__answer[hidden] {
  display: none;
}

/* Newsletter */
.j4-lp .email-signup-banner__title {
  letter-spacing: 0.08em;
}

/* Print */
@media print {
  .j4-announce,
  .j4-benefits,
  .j4-modes,
  .j4-deep,
  .j4-cta,
  .j4-faq,
  .email-signup-banner,
  footer,
  .j4-hub__copy,
  .j4-check .j4-btn,
  .header-section {
    display: none !important;
  }

  .j4-hub__grid {
    display: block;
  }

  .j4-check {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .j4-benefits__inner,
  .j4-hub__grid,
  .j4-deep__grid {
    grid-template-columns: 1fr;
  }

  .j4-benefits__grid {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--j4-line);
    padding-top: 1.25rem;
  }

  .j4-modes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .j4-product {
    grid-template-columns: 1fr;
  }

  .j4-product__media img {
    min-height: 220px;
    max-height: 280px;
  }

  .j4-hero {
    min-height: clamp(560px, 125vw, 720px);
  }

  .j4-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.88) 42%,
      rgba(255, 255, 255, 0.35) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .j4-hero__img {
    object-position: right center;
  }

  .j4-hero__content {
    align-items: flex-start;
    padding-top: clamp(2.5rem, 8vw, 4rem);
  }

  .j4-hero__pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .j4-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .j4-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .j4-hero__actions .j4-btn {
    width: 100%;
  }

  .j4-product__actions {
    flex-direction: column;
  }

  .j4-product__actions .j4-btn {
    width: 100%;
  }

  .j4-modes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
}

@media (min-width: 1001px) {
  .j4-lp-page .header-section #menu.collapse {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
  }
}
