@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --lpw-bg: #eaf2f8;
  --lpw-surface: #ffffff;
  --lpw-surface-soft: #f6f9fc;
  --lpw-surface-alt: #dbe7f0;
  --lpw-text: #0f2535;
  --lpw-muted: #3f5d71;
  --lpw-primary: #0079a3;
  --lpw-primary-strong: #005f82;
  --lpw-accent: #ff8a00;
  --lpw-border: rgba(15, 37, 53, 0.12);
  --lpw-radius-xl: 28px;
  --lpw-radius-lg: 20px;
  --lpw-radius-md: 14px;
  --lpw-shadow: 0 24px 54px rgba(8, 38, 55, 0.16);
  --lpw-shadow-soft: 0 14px 34px rgba(8, 38, 55, 0.09);
  --lpw-container: min(1260px, 94vw);
}

.lpw-page {
  color: var(--lpw-text);
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 121, 163, 0.2), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(255, 138, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #edf4fa 0%, #f6fbff 42%, #eef5fb 100%);
  font-family: "Barlow", "Segoe UI", sans-serif;
  margin-top: 0px;
}

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

.lpw-container {
  width: var(--lpw-container);
  margin-inline: auto;
}

.lpw-section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.lpw-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lpw-border);
}

.lpw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.lpw-nav__brand {
  color: var(--lpw-text);
  text-decoration: none;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.lpw-nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lpw-nav__links a,
.lpw-nav__panel a {
  color: var(--lpw-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 10px;
}

.lpw-nav__links a:hover,
.lpw-nav__panel a:hover {
  background: rgba(0, 121, 163, 0.1);
  color: var(--lpw-primary-strong);
}

.lpw-nav__ticket {
  background: linear-gradient(135deg, var(--lpw-primary), var(--lpw-primary-strong));
  color: #fff !important;
}

.lpw-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lpw-border);
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.lpw-nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--lpw-text);
}

.lpw-nav__panel {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 4vw 18px;
}

.lpw-nav.is-open .lpw-nav__panel {
  display: flex;
}

.lpw-hero {
  padding: clamp(48px, 7vw, 90px) 0 clamp(36px, 5vw, 56px);
}

.lpw-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.lpw-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 18px;
  margin: 0 0 20px;
  background: rgba(0, 121, 163, 0.14);
  color: #fff!important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lpw-hero h1 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.lpw-subheadline {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--lpw-primary-strong);
  font-weight: 600;
  line-height: 1.2;
}

.lpw-lead {
  margin: 0 0 26px;
  color: var(--lpw-muted);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
}

.lpw-trainerline {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  color: #1f4158;
}

.lpw-hero__usps {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.lpw-usp {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(0, 121, 163, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 242, 248, 0.9));
  box-shadow: var(--lpw-shadow-soft);
  padding: 14px 16px 15px 18px;
  position: relative;
}

.lpw-usp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--lpw-primary), var(--lpw-accent));
}

.lpw-usp h3 {
  margin: 0;
  padding-left: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.lpw-usp p {
  margin: 0;
  padding-left: 10px;
  color: var(--lpw-muted);
  font-size: 18px;
  line-height: 1.4;
}

.lpw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lpw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  padding: 13px 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.lpw-btn:hover {
  transform: translateY(-2px);
}

.lpw-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--lpw-primary), var(--lpw-primary-strong));
  box-shadow: 0 14px 26px rgba(0, 121, 163, 0.28);
}

.lpw-btn--primary:hover {
  box-shadow: 0 18px 34px rgba(0, 121, 163, 0.34);
}

.lpw-btn--ghost {
  color: var(--lpw-text);
  border-color: var(--lpw-border);
  background: rgba(255, 255, 255, 0.82);
}

.lpw-hero__media {
  margin: 0;
}

.lpw-hero__media img {
  width: 100%;
  border-radius: var(--lpw-radius-xl);
  box-shadow: var(--lpw-shadow);
  display: block;
  object-fit: cover;
  min-height: 430px;
}

.lpw-partner-strip {
  padding: 0 0 clamp(44px, 6vw, 64px);
}

.lpw-partner-strip__inner {
  border: 1px solid var(--lpw-border);
  border-radius: var(--lpw-radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--lpw-shadow-soft);
  padding: clamp(20px, 3vw, 30px);
}

.lpw-partner-strip__text {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 600;
}

.lpw-partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lpw-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  border: 1px solid var(--lpw-border);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
}

.lpw-logo-card img {
  max-width: 100%;
  width: 100%;
  height: 68px;
  object-fit: contain;
  display: block;
}

.lpw-logo-card--sm5k {
  background: #07090b;
  border-color: #101922;
}

.lpw-logo-card--sm5k img {
 
}

.lpw-section__heading {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 34px;
}

.lpw-section__heading h2 {
  margin: 0 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lpw-section__heading p {
  margin: 0;
  color: var(--lpw-muted);
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.5;
}

.lpw-problem-solution {
  background: rgba(255, 255, 255, 0.62);
}

.lpw-problem-copy {
  max-width: 990px;
  margin: 0 auto 26px;
  text-align: center;
}

.lpw-problem-copy p {
  margin: 0;
  color: var(--lpw-muted);
  font-size: 21px;
  line-height: 1.55;
}

.lpw-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lpw-solution-card {
  border-radius: var(--lpw-radius-md);
  border: 1px solid var(--lpw-border);
  background: var(--lpw-surface);
  box-shadow: var(--lpw-shadow-soft);
  padding: 22px 18px;
}

.lpw-solution-card img {
  width: 0;
  height: 0;
  object-fit: contain;
}

.lpw-solution-card h3 {
  margin: 12px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.lpw-solution-card p {
  margin: 0;
  color: var(--lpw-muted);
  font-size: 18px;
  line-height: 1.45;
}

.lpw-cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.lpw-target-audience__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  border: 1px solid var(--lpw-border);
  border-radius: var(--lpw-radius-xl);
  background: linear-gradient(145deg, #fff 0%, #edf5fb 100%);
  box-shadow: var(--lpw-shadow-soft);
  padding: clamp(30px, 4vw, 50px);
  align-items: center;
}

.lpw-target-audience h2 {
  margin: 0 0 16px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.3vw, 52px);
  line-height: 1.08;
}

.lpw-target-audience p {
  margin: 0 0 14px;
  color: var(--lpw-muted);
  font-size: 21px;
  line-height: 1.5;
}

.lpw-target-audience figure {
  margin: 0;
}

.lpw-target-audience img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--lpw-shadow-soft);
  display: block;
}

.lpw-agenda {
  background: rgba(229, 239, 248, 0.42);
}

.lpw-overview-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.lpw-overview-card {
  border-radius: 16px;
  border: 1px solid var(--lpw-border);
  background: #fff;
  padding: 18px 16px;
  box-shadow: var(--lpw-shadow-soft);
}

.lpw-overview-card span {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lpw-primary-strong);
  margin-bottom: 8px;
}

.lpw-overview-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.lpw-overview-card p {
  margin: 0;
  color: var(--lpw-muted);
  font-size: 18px;
}

.lpw-overview-card--pause {
  background: #fff8f0;
}

.lpw-agenda__layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: start;
}

.lpw-agenda__items {
  display: grid;
  gap: 12px;
}

.lpw-agenda-item {
  border-radius: 16px;
  border: 1px solid var(--lpw-border);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--lpw-shadow-soft);
}

.lpw-agenda-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--lpw-text);
  padding: 16px 18px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.lpw-agenda-item__trigger::after {
  content: "+";
  color: var(--lpw-primary-strong);
  font-size: 30px;
  line-height: 1;
}

.lpw-agenda-item.is-open .lpw-agenda-item__trigger::after {
  content: "-";
}

.lpw-agenda-item__content {
  padding: 50px 20px 18px;
}

.lpw-agenda-item__content ol,
.lpw-agenda-item__content ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 13px;
}

.lpw-agenda-item__content li {
  color: var(--lpw-muted);
  font-size: 22px;
  line-height: 1.45;
}

.lpw-agenda-item__content strong {
  color: #17374d;
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1.35;
}

.lpw-agenda-item__content p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.lpw-agenda-item--pause {
  background: #fff5ea;
  padding: 16px;
  text-align: center;
}

.lpw-agenda-item--pause p {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #b55a00;
}

.lpw-agenda__media {
  display: grid;
  gap: 14px;
}

.lpw-agenda__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--lpw-shadow-soft);
  display: block;
}

.lpw-speakers {
  background: linear-gradient(180deg, rgba(220, 234, 246, 0.68), rgba(232, 243, 250, 0.74));
}

.lpw-speakers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.lpw-speaker-card {
  border: 1px solid var(--lpw-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--lpw-shadow-soft);
  padding: 18px;
}

.lpw-speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.lpw-speaker-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 33px;
  line-height: 1.1;
}

.lpw-speaker-card p {
  margin: 0 0 14px;
  color: var(--lpw-muted);
  font-size: 20px;
  line-height: 1.5;
}

.lpw-facts {
  padding-top: clamp(56px, 7vw, 96px);
}

.lpw-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lpw-fact {
  border-radius: 18px;
  border: 1px solid var(--lpw-border);
  background: #fff;
  box-shadow: var(--lpw-shadow-soft);
  padding: 22px;
}

.lpw-fact h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 28px;
}

.lpw-fact p {
  margin: 0;
  color: var(--lpw-muted);
  font-size: 19px;
  line-height: 1.5;
}

.lpw-checkout {
  padding-top: clamp(58px, 8vw, 110px);
}

.lpw-checkout__card {
  max-width: 980px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  box-shadow: 0 28px 62px rgba(5, 33, 49, 0.34);
  padding: clamp(28px, 5vw, 50px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 150, 38, 0.2), transparent 36%),
    linear-gradient(145deg, #0d3348 0%, #0a4d72 44%, #0b3151 100%);
  color: #fff;
}

.lpw-checkout h2 {
  margin: 10px 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color:#fff!important;
}

.lpw-checkout__lead {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.7vw, 32px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.lpw-checkout__facts {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.lpw-checkout__facts li {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.lpw-checkout__cta {
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(7, 44, 68, 0.58), rgba(6, 31, 48, 0.62));
}

.lpw-checkout__cta .cart {
  margin: 0;
}

.lpw-checkout .quantity {
  display: none !important;
}

.lpw-checkout .woocommerce a.button,
.lpw-checkout a.add_to_cart_button,
.lpw-checkout .add_to_cart_button,
.lpw-checkout .button,
.lpw-checkout button.single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #ff9d26 0%, #ff8a00 100%) !important;
  color: #111 !important;
  padding: 16px 20px !important;
  font-size: clamp(26px, 2.1vw, 34px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  text-transform: none !important;
  box-shadow: 0 16px 32px rgba(255, 138, 0, 0.38);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.lpw-checkout .woocommerce a.button:hover,
.lpw-checkout a.add_to_cart_button:hover,
.lpw-checkout .add_to_cart_button:hover,
.lpw-checkout .button:hover,
.lpw-checkout button.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.45);
}

.lpw-checkout .added_to_cart {
  display: inline-block;
  margin-top: 10px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
}

[data-lpw-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 540ms ease, transform 540ms ease;
}

[data-lpw-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .lpw-overview-cards,
  .lpw-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .lpw-nav__links {
    display: none;
  }

  .lpw-nav__toggle {
    display: flex;
  }

  .lpw-hero__grid,
  .lpw-target-audience__grid,
  .lpw-agenda__layout,
  .lpw-speakers__grid {
    grid-template-columns: 1fr;
  }

  .lpw-hero__media img {
    min-height: 0;
  }

  .lpw-logo-card {
    min-height: 98px;
  }
}

@media (max-width: 720px) {
  .lpw-section {
    padding: 58px 0;
  }

  .lpw-overview-cards,
  .lpw-facts__grid,
  .lpw-partner-logos,
  .lpw-solution-grid {
    grid-template-columns: 1fr;
  }

  .lpw-btn {
    width: 100%;
  }

  .lpw-hero__actions {
    gap: 10px;
  }

  .lpw-section__heading h2 {
    font-size: clamp(32px, 11vw, 45px);
  }

  .lpw-agenda-item__content li,
  .lpw-agenda-item__content strong,
  .lpw-agenda-item__content p {
    font-size: 18px;
  }

  .lpw-checkout h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .lpw-checkout__facts li {
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .lpw-checkout .woocommerce a.button,
  .lpw-checkout a.add_to_cart_button,
  .lpw-checkout .add_to_cart_button,
  .lpw-checkout .button,
  .lpw-checkout button.single_add_to_cart_button {
    font-size: clamp(22px, 7vw, 28px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.wd-page-content {
  margin-top: 0 !important;
}

.wd-header-search,
.wd-rs-6970f7bc1f999,
.wd-rs-666ac96073de8,
.wd-header-nav,
.wd-prefooter,
.contact-button {
  display: none !important;
}

.container {
  max-width: 100vw !important;
  padding-inline: 0 !important;
}

.wd-content-layout {
  padding-block: 0 !important;
}






.container {
  max-width: 100vw !important;
  padding-inline: 0 !important;
}

.wd-content-layout {
  padding-block: 0 !important;
}



.whb-col-right, .whb-mobile-right {
  justify-content: center!important;
  margin-right: -10px;
}


.whb-col-left, .whb-mobile-left {
  justify-content: center!important;
  margin-left: -10px;
}


.lpw-date-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 121, 163, 0.32);
  background: rgba(255, 255, 255, 0.86);
  color: #0f2535;
  font-size: 16px;
  font-weight: 700;
}

.lpw-date-highlight__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lpw-primary-strong);
}

.lpw-date-highlight strong {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1;
}

.lpw-checkout__cta .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
  font-weight: 800;
}

.lpw-checkout__cta .price del {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(28px, 3.2vw, 54px);
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.92);
  text-decoration-skip-ink: none;
}

.lpw-checkout__cta .price ins {
  text-decoration: none;
  color: #ffffff;
  font-size: clamp(36px, 4.4vw, 70px);
}

.lpw-checkout__cta .price .woocommerce-Price-currencySymbol {
  margin-left: 2px;
}

.lpw-checkout__cta .price .tax_label {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 500;
}

.lpw-checkout__cta .price bdi {
  font-size: inherit;
  line-height: 1.05;
}

.lpw-footer {
  background: #000;
  color: #fff;
  padding: 34px 0 30px;
}

.lpw-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.lpw-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 15vw, 210px);
  min-height: 54px;
}

.lpw-footer__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.lpw-footer__links-wrap {
  flex: 1;
}

.lpw-footer__subtitle {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
}

.lpw-footer__title {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

.lpw-footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
}

.lpw-footer__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  transition: opacity 150ms ease;
}

.lpw-footer__links a:hover {
  opacity: 0.72;
}

@media (max-width: 720px) {
  .lpw-date-highlight {
    width: 100%;
    justify-content: flex-start;
  }

  .lpw-checkout__cta .price {
    gap: 6px;
  }

  .lpw-checkout__cta .price del {
    font-size: clamp(24px, 8vw, 34px);
  }

  .lpw-checkout__cta .price ins {
    font-size: clamp(34px, 11vw, 44px);
  }

  .lpw-checkout__cta .price .tax_label {
    font-size: 20px;
    width: 100%;
    margin-left: 0;
  }

  .lpw-footer__inner {
    flex-direction: column;
    gap: 18px;
  }
}


.main-footer {display:none;}


.amount {
  color: #fff!important;
  font-weight: 600;
}


del {
  font-size: 2em;
}