@font-face {
  font-family: 'Saol Display';
  src: url('../join_files/fonts/SaolDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Keep emoji / symbols on system fonts — do not swap after webfont loads */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2013-2014, U+2018-201E, U+2022, U+2026, U+20AC, U+2122, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2013-2014, U+2018-201E, U+2022, U+2026, U+20AC, U+2122, U+FEFF, U+FFFD;
}

:root {
  /* Replica / UI kit tokens */
  --lp2-page: #e8ebe4;
  --lp2-band-deep: #dee3d6;
  --lp2-band-mist: #f4f5f1;
  --lp2-navy: #051c2c;
  --lp2-teal: #1a6a7b;
  --lp2-teal-dark: #154f5c;
  --lp2-green: #23744a;
  --lp2-blue: #4d6feb;
  --lp2-gold: #ffc978;
  --lp2-gold-hover: #f0bc66;
  --lp2-cream: #f5f7fb;
  --lp2-cream-warm: #fffdfa;
  --lp2-text: #3d3f41;
  --lp2-text-light: #f5f7fb;
  --lp2-border: #b3b9bc;
  --lp2-border-input: rgba(5, 28, 44, 0.2);
  --lp2-error: #e81b23;
  --lp2-shadow: 0 8px 32px rgba(5, 28, 44, 0.08);
  --lp2-font-serif: 'Saol Display', Georgia, serif;
  --lp2-font-sans: 'Myriad Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --lp2-font-emoji: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', emoji;
  --lp2-header-h: 64px;
  --lp2-sticky-h: 72px;
  --lp2-max: 1312px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; margin-top: 0 !important; }

body.lp2-page {
  margin: 0;
  font-family: var(--lp2-font-sans);
  font-size: 16px;
  line-height: 24px;
  color: var(--lp2-text);
  background: var(--lp2-page);
  -webkit-font-smoothing: antialiased;
}

body.lp2-page a { text-decoration: none; color: inherit; }
.lp2-page img { max-width: 100%; height: auto; }

/* Header */
.lp2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--lp2-header-h);
  background: var(--lp2-page);
}

.lp2-header-inner {
  max-width: calc(var(--lp2-max) + 250px);
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp2-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp2-logo img {
  display: block;
  height: 20px;
  width: auto;
}

.lp2-header-cta { display: none; }

.lp2-header-cta-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--lp2-teal);
  border-radius: 8px;
}

.lp2-header-cta-copy { color: var(--lp2-text-light); }

.lp2-header-cta-title {
  margin: 0;
  font-family: var(--lp2-font-serif);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

.lp2-header-cta-sub {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  opacity: 0.8;
}

.lp2-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  min-height: 38px;
  border: none;
  border-radius: 8px;
  background: var(--lp2-gold);
  color: var(--lp2-navy);
  font-family: var(--lp2-font-sans);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.lp2-btn-gold:hover { background: var(--lp2-gold-hover); }

.lp2-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 308px;
  margin: 0 auto;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  background: var(--lp2-teal);
  color: var(--lp2-text-light);
  font-family: var(--lp2-font-sans);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s;
}

.lp2-btn-primary:hover { background: var(--lp2-teal-dark); }
.lp2-scroll-cta { cursor: pointer; }

/* Layout */
.lp2-main { padding-top: var(--lp2-header-h); }

.lp2-hero-band {
  background: var(--lp2-page);
  padding: 24px 20px 32px;
}

.lp2-hero-inner {
  max-width: calc(var(--lp2-max) + 128px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.lp2-success {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(35, 116, 74, 0.06);
  border: 1px solid var(--lp2-green);
  font-size: 12px;
  line-height: 16px;
  color: var(--lp2-green);
}

.lp2-success-dot {
  color: var(--lp2-gold);
  font-size: 16px;
  line-height: 1;
}

.lp2-hero-title {
  margin: 0 0 16px;
  font-family: var(--lp2-font-serif);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.17;
  letter-spacing: 0;
  color: var(--lp2-navy);
  font-weight: 400;
  text-transform: capitalize;
}

.lp2-hero-title .lp2-accent-blue {
  font-style: normal;
  color: var(--lp2-blue);
}

.lp2-hero-sub {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 24px;
  color: var(--lp2-text);
  opacity: 0.86;
  max-width: 520px;
}

.lp2-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lp2-features li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  line-height: 24px;
  color: var(--lp2-text);
  letter-spacing: -0.1px;
}

.lp2-emoji,
.lp2-feature-emoji {
  font-family: var(--lp2-font-emoji) !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  font-synthesis: none;
  line-height: 1;
  -webkit-font-smoothing: auto;
  text-transform: none;
  letter-spacing: normal;
}

.lp2-feature-emoji {
  flex-shrink: 0;
  display: block;
  font-size: 1.25em;
  line-height: 1.5;
  text-align: center;
  padding-top: 2px;
}

.lp2-features strong { font-weight: 600; }

/* Checkout */
#checkout { scroll-margin-top: calc(var(--lp2-header-h) + 16px); }

.lp2-checkout-card {
  border-radius: 20px;
  border: 1px solid var(--lp2-teal);
  overflow: hidden;
  background: var(--lp2-cream);
}

.lp2-checkout-top {
  display: grid;
  grid-template-columns: 1fr;
}

.lp2-offer-panel {
  padding: 16px;
  background: var(--lp2-cream);
  text-align: center;
}

.lp2-offer-label {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 16px;
  color: var(--lp2-green);
}

.lp2-offer-title {
  margin: 0;
  font-family: var(--lp2-font-serif);
  font-size: 28px;
  line-height: 34px;
  color: var(--lp2-navy);
  text-transform: capitalize;
}

.lp2-offer-price {
  display: block;
  margin: 16px 0 0;
  font-family: var(--lp2-font-serif);
  font-size: 48px;
  line-height: 56px;
  color: var(--lp2-teal);
  text-transform: capitalize;
}

.lp2-offer-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: var(--lp2-text);
}

.lp2-form-panel {
  padding: 20px;
  background: var(--lp2-page);
}

.is-hidden { display: none !important; }

.lp2-form-panel--summary {
  padding-top: 16px;
}

.lp2-details-summary {
  margin: 0 0 20px;
  padding: 12px 20px;
  background: var(--lp2-cream-warm);
  border: 1px solid var(--lp2-border-input);
  border-radius: 12px;
}

.lp2-details-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.lp2-details-summary-title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--lp2-green);
}

.lp2-details-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--lp2-teal);
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.lp2-details-edit:hover {
  background: rgba(26, 106, 123, 0.08);
  color: var(--lp2-teal-dark);
}

.lp2-details-summary-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--lp2-border-input);
}

.lp2-details-summary-row:last-of-type {
  border-bottom: none;
}

.lp2-details-summary-label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: var(--lp2-text);
}

.lp2-details-summary-value {
  font-size: 12px;
  line-height: 16px;
  color: var(--lp2-text);
  text-align: right;
}

.lp2-details-fields.is-hidden {
  display: none !important;
}

.lp2-form-section-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--lp2-text);
}

.lp2-field { margin-bottom: 10px; }

.lp2-field label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--lp2-text);
}

.lp2-field label .lp2-req { color: var(--lp2-error); font-weight: 300; }

.lp2-field input,
.lp2-field select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  color: var(--lp2-text);
  background: var(--lp2-cream-warm);
}

.lp2-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233d3f41' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.lp2-field input:focus,
.lp2-field select:focus {
  outline: 2px solid rgba(26, 106, 123, 0.25);
}

.lp2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp2-pay-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.lp2-pay-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  color: var(--lp2-text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp2-pay-tab-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.lp2-pay-tab-icon--card {
  color: var(--lp2-text);
}

.lp2-pay-tab.is-active .lp2-pay-tab-icon--card {
  filter: brightness(0) invert(1);
}

.lp2-pay-tab-icon--apple {
  color: #000;
}

.lp2-pay-tab.is-active .lp2-pay-tab-icon--apple {
  filter: brightness(0) invert(1);
}

.lp2-pay-tab:not(.is-active):hover {
  border-color: var(--lp2-teal);
  background: rgba(26, 106, 123, 0.06);
}

.lp2-pay-tab:not(.is-active):hover .lp2-pay-tab-icon--card {
  opacity: 0.85;
}

.lp2-pay-tab.is-active {
  background: var(--lp2-teal);
  border-color: var(--lp2-teal);
  color: var(--lp2-text-light);
}

.lp2-pay-tab.is-active:hover {
  background: var(--lp2-teal-dark);
  border-color: var(--lp2-teal-dark);
}

.lp2-pay-tab:focus-visible {
  outline: 2px solid var(--lp2-teal);
  outline-offset: 2px;
}

.lp2-pay-panel { display: none; }
.lp2-pay-panel.is-active { display: block; }

.lp2-checkout-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.lp2-renewal,
.lp2-secure {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: var(--lp2-text);
}

.lp2-paypal-wrap { min-height: 48px; width: 100%; }
.lp2-alt-pay { padding: 16px 0; text-align: center; font-size: 14px; color: var(--lp2-text); }

.lp2-form-error {
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdeaea;
  border: 1px solid #f0c0c0;
  color: var(--lp2-error);
  font-size: 13px;
}

.lp2-form-error.is-visible { display: block; }
.lp2-btn-primary:disabled { opacity: 0.65; cursor: not-allowed; }

/* Sections */
.lp2-band { padding: 48px 20px; }
.lp2-band--deep { background: var(--lp2-band-deep); }
.lp2-band--mist { background: var(--lp2-band-mist); }
.lp2-band--page { background: var(--lp2-page); }

.lp2-inner {
  max-width: calc(var(--lp2-max) + 128px);
  margin: 0 auto;
}

.lp2-kicker {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--lp2-green);
  text-align: center;
}

.lp2-panel {
  position: relative;
  max-width: 614px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 8px 32px 8px 32px;
}

.lp2-panel--sage { background: var(--lp2-page); }
.lp2-panel--cream { background: var(--lp2-cream); }

.lp2-section-title {
  margin: 0 0 16px;
  font-family: var(--lp2-font-serif);
  font-size: clamp(28px, 4vw, 32px);
  line-height: 36px;
  color: var(--lp2-navy);
  text-align: center;
  text-transform: capitalize;
}

.lp2-section-lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--lp2-text);
  text-align: center;
}

.lp2-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
}
ol li, ul li {
  margin: 7px 0;
}
.lp2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.lp2-check {
  flex-shrink: 0;
  width: 26px;
  height: 24px;
}

.lp2-highlight-box {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 20px 4px 20px 4px;
  background: var(--lp2-cream-warm);
}

.lp2-highlight-box strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-family: var(--lp2-font-serif);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: var(--lp2-navy);
}

.lp2-highlight-box p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  color: var(--lp2-text);
  letter-spacing: -0.21px;
}

/* Stats band — title centered, 2×2 grid on all breakpoints */
.lp2-band--mist .lp2-section-title,
.lp2-band--mist .lp2-section-lead {
  text-align: center;
}

.lp2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
  max-width: 636px;
  width: 100%;
  margin: 0 auto 24px;
  align-items: start;
}

.lp2-stat {
  text-align: center;
  padding: 0 12px;
}

.lp2-stat:nth-child(odd) {
  border-right: 1px solid var(--lp2-border);
}

.lp2-stat-num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--lp2-font-serif);
  font-size: 32px;
  line-height: 36px;
  color: var(--lp2-teal);
  text-transform: capitalize;
}

.lp2-stat-desc {
  font-family: var(--lp2-font-serif);
  font-size: 18px;
  line-height: 22px;
  color: var(--lp2-text);
}

.lp2-band-note {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 100;
  color: #3D3F41;
  margin: 8px auto;
}

.lp2-band-note.button-note {
  max-width: 308px;
}

.lp2-price-hero {
  margin: 0;
  font-family: var(--lp2-font-serif);
  font-size: 48px;
  line-height: 56px;
  color: var(--lp2-teal);
  text-align: center;
  text-transform: capitalize;
}

.lp2-cta-card {
  text-align: center;
}

.lp2-cta-card .lp2-btn-primary { margin-top: 8px;     max-width: 308px;}

.lp2-cta-sub {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--lp2-text);
}

.lp2-discover {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.lp2-discover-text .lp2-kicker,
.lp2-discover-text .lp2-section-title,
.lp2-discover-text .lp2-section-lead { text-align: left; }

.lp2-discover-text .lp2-section-lead { margin-bottom: 0; }

.lp2-section-title .lp2-teal-word { color: var(--lp2-teal); }

.lp2-discover-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.lp2-discover-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 240px;
  max-width: 280px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}

.lp2-faq-wrap { max-width: 100%; }

.lp2-faq-deco {
  display: block;
  margin: 0 auto 20px;
  width: 155px;
  height: auto;
}

.lp2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.lp2-faq {
  border-radius: 12px;
  background: var(--lp2-cream-warm);
  border: 1px solid var(--lp2-border);
  overflow: hidden;
}

.lp2-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 20px;
  border: none;
  background: transparent;
  font-family: var(--lp2-font-serif);
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-align: left;
  color: var(--lp2-navy);
  cursor: pointer;
}

.lp2-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.7;
  position: relative;
}

.lp2-faq-icon::before,
.lp2-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--lp2-text);
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}

.lp2-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.lp2-faq.is-open .lp2-faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.lp2-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.lp2-faq-body p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  color: var(--lp2-text);
}
section.lp2-band.lp2-band--mist {
  padding: 30px;
}
.lp2-final-note {
  margin: 8px auto 10px   ;
  max-width: 345px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  color: var(--lp2-text);
  text-align: center;
}
img.misc-7 {
  position: absolute;
  bottom: 120px;
  right: 0;
}
.lp2-footer {
  padding: 16px 24px;
  background: var(--lp2-band-deep);
  text-align: center;
}

.lp2-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
  color: var(--lp2-text);
}

/* Mobile sticky */
.lp2-sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lp2-teal);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.lp2-sticky-mobile-text {
  font-size: 12px;
  line-height: 16px;
  color: var(--lp2-text-light);
}

.lp2-sticky-mobile-text strong {
  display: block;
  font-family: var(--lp2-font-serif);
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

body.lp2-page { padding-bottom: var(--lp2-sticky-h); }

/* Desktop */
@media (min-width: 900px) {
  .lp2-header-inner { padding: 0 64px; }
  .lp2-logo img { height: 26px; }
  .lp2-header-cta { display: block; }

  .lp2-sticky-mobile { display: none; }
  body.lp2-page { padding-bottom: 0; }

  .lp2-hero-band { padding: 32px 64px; }
  .lp2-hero-inner {
    grid-template-columns: minmax(0, 467px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }

  .lp2-checkout-top {
    grid-template-columns: 376px 1fr;
  }

  .lp2-offer-panel {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px 0 0 0;
  }

  .lp2-form-panel { padding: 20px; }

  .lp2-band { padding: 80px 64px; }

  .lp2-discover {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .lp2-discover-text { flex: 0 0 410px; }

  .lp2-discover-divider {
    flex: 0 0 1px;
    align-self: stretch;
    width: 1px;
    min-height: 200px;
    background: var(--lp2-border);
  }

  .lp2-discover-features { flex: 1; justify-content: flex-start; }
}

@media (max-width: 899px) {
  .lp2-header-inner { justify-content: center; }
  .lp2-discover-divider { display: none; }

  .lp2-hero-copy > .lp2-success {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lp2-hero-copy .lp2-hero-title,
  .lp2-hero-copy .lp2-hero-sub {
    text-align: center;
  }

  .lp2-hero-copy .lp2-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .lp2-discover-text .lp2-kicker,
  .lp2-discover-text .lp2-section-title {
    text-align: center;
  }

  .lp2-discover-item {
    max-width: none;
  }

  .lp2-stats {
    gap: 24px 20px;
    max-width: 100%;
    padding: 0 4px;
  }

  .lp2-stat { padding: 0 8px; }

  .lp2-stat-num {
    font-size: 28px;
    line-height: 32px;
  }

  .lp2-stat-desc {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Theme isolation */
html,
html body.lp2-page {
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow-x: hidden;
}

body.lp2-page #page,
body.lp2-page #page > .site,
body.lp2-page .site-content,
body.lp2-page .content-area,
body.lp2-page .container,
body.lp2-page .container-fluid {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

body.lp2-page h1,
body.lp2-page h2,
body.lp2-page h3,
body.lp2-page h4 {
  font-family: var(--lp2-font-serif);
  font-weight: 400;
  /* text-align: inherit; */
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;

}

body.lp2-page .lp2-hero-title {
  color: var(--lp2-navy);
}

body.lp2-page .lp2-emoji,
body.lp2-page .lp2-feature-emoji {
  font-family: var(--lp2-font-emoji) !important;
}

body.lp2-page input,
body.lp2-page select,
body.lp2-page textarea,
body.lp2-page button {
  font-family: inherit;
  max-width: 100%;
}

body.lp2-page input[type="text"],
body.lp2-page input[type="email"],
body.lp2-page input[type="tel"],
body.lp2-page input[type="password"],
body.lp2-page select {
  width: 100% !important;
  height: auto !important;
  box-shadow: none !important;
}

body.lp2-page ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

body.lp2-page #masthead,
body.lp2-page .site-header,
body.lp2-page .site-footer,
body.lp2-page #colophon,
body.lp2-page .modal,
body.lp2-page .modal-backdrop,
body.lp2-page .offcanvas,
body.lp2-page [class*="login-modal"],
body.lp2-page [id*="login-modal"] {
  display: none !important;
}

body.lp2-page .lp2-sticky-mobile ~ div:not(.lp2-sticky-mobile),
body.lp2-page .lp2-sticky-mobile ~ section,
body.lp2-page .lp2-sticky-mobile ~ form,
body.lp2-page .lp2-sticky-mobile ~ aside,
body.lp2-page .lp2-sticky-mobile ~ footer,
body.lp2-page .lp2-sticky-mobile ~ nav {
  display: none !important;
}

body.lp2-page .lp2-sticky-mobile ~ .weddingdir-auth,
body.lp2-page .lp2-sticky-mobile ~ .register-form-wrapper,
body.lp2-page .lp2-sticky-mobile ~ #register-form,
body.lp2-page .lp2-sticky-mobile ~ #login-form {
  display: none !important;
}
