:root {
  --le-blue: #071b8f;
  --le-blue-2: #0057d9;
  --le-blue-3: #0874ff;
  --le-yellow: #ffd21a;
  --le-text: #101827;
  --le-muted: #667085;
  --le-soft-blue: #eef5ff;
  --le-border: rgba(7, 27, 143, 0.12);
  --le-shadow: 0 28px 80px rgba(3, 12, 49, 0.35);
  --le-radius-xl: 32px;
  --le-radius-lg: 24px;
  --le-radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f7fb;
  color: var(--le-text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

html.le-pwa-modal-open,
body.le-pwa-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Demo page background */
.demo-page {
  min-height: 100vh;
  padding: 28px clamp(16px, 4vw, 44px) 42px;
  background:
    linear-gradient(180deg, rgba(5, 24, 78, 0.18), rgba(244, 247, 251, 0.96) 34%),
    radial-gradient(circle at 15% 10%, rgba(255, 210, 26, 0.24), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(0, 87, 217, 0.18), transparent 24%),
    #f4f7fb;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1020px;
  margin: 0 auto 26px;
}

.demo-logo {
  width: 230px;
  max-width: 48vw;
  height: auto;
  object-fit: contain;
}

.demo-icons {
  display: flex;
  gap: 14px;
}

.demo-icons button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #1d2939;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.demo-icons svg {
  width: 25px;
  height: 25px;
}

.demo-categories,
.demo-search-card,
.demo-grid,
.demo-preview-btn {
  max-width: 1020px;
  margin-inline: auto;
}

.demo-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.demo-categories button {
  border: 1px solid rgba(7, 27, 143, 0.08);
  min-height: 74px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #344054;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.demo-categories button.is-active {
  color: var(--le-blue-2);
  border-color: rgba(0, 87, 217, 0.42);
}

.demo-categories span {
  font-size: 26px;
}

.demo-search-card {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  margin-bottom: 22px;
}

.demo-search-card div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(7, 27, 143, 0.08);
}

.demo-search-card label {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.demo-search-card strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.demo-search-card button {
  border: 0;
  border-radius: 16px;
  padding: 0 30px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--le-blue-3), var(--le-blue));
  cursor: pointer;
}

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

.demo-grid article {
  min-height: 170px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.9), transparent 13%),
    linear-gradient(135deg, #75d1ff, #176cb7 45%, #03437b);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.demo-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5)),
    linear-gradient(135deg, #ffd9a7, #d77637 48%, #6243b8);
}

.demo-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54)),
    linear-gradient(135deg, #86efac, #0891b2 48%, #0f172a);
}

.demo-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54)),
    linear-gradient(135deg, #bae6fd, #22c55e 48%, #155e75);
}

.demo-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.demo-preview-btn {
  display: block;
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
}

/* PWA modal */
.le-pwa-overlay[hidden] {
  display: none !important;
}

.le-pwa-overlay {
  /* position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 18px; */

  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 42px 18px 24px;
  overflow: hidden;
  overscroll-behavior: none;
}

.le-pwa-overlay {
  overflow: hidden;
  overscroll-behavior: none;
}

.le-pwa-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(4, 12, 34, 0.6), rgba(4, 12, 34, 0.6));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.le-pwa-card {
  position: relative;
  width: min(100%, 370px);
  /* width: 100%; */
  /* max-height: calc(70vh - 2px); */
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 210, 26, 0.12), transparent 26%),
    radial-gradient(circle at 100% 20%, rgba(0, 87, 217, 0.09), transparent 28%),
    #ffffff;
  border-radius: var(--le-radius-xl);
  box-shadow: var(--le-shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
  animation: lePwaPop 0.28s ease-out;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.le-pwa-card::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* REMOVE / matikan fake side cutout lama */
.le-pwa-card::before,
.le-pwa-card::after {
  display: none !important;
}

/* TRUE ticket cutout */
/* TRUE diagonal ticket cutout */
.le-pwa-card {
  --le-notch-radius: 24px;

  /* kiri lebih bawah, kanan lebih atas */
  --le-notch-left-y: 365px;
  --le-notch-right-y: 205px;

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-mask-image:
    radial-gradient(
      circle var(--le-notch-radius) at 0 var(--le-notch-left-y),
      transparent 0 calc(var(--le-notch-radius) - 1px),
      #000 var(--le-notch-radius)
    ),
    radial-gradient(
      circle var(--le-notch-radius) at 100% var(--le-notch-right-y),
      transparent 0 calc(var(--le-notch-radius) - 1px),
      #000 var(--le-notch-radius)
    );

  -webkit-mask-composite: source-in;

  mask-image:
    radial-gradient(
      circle var(--le-notch-radius) at 0 var(--le-notch-left-y),
      transparent 0 calc(var(--le-notch-radius) - 1px),
      #000 var(--le-notch-radius)
    ),
    radial-gradient(
      circle var(--le-notch-radius) at 100% var(--le-notch-right-y),
      transparent 0 calc(var(--le-notch-radius) - 1px),
      #000 var(--le-notch-radius)
    );

  mask-composite: intersect;
}

@media (max-width: 480px) {
  .le-pwa-card {
    --le-notch-radius: 14px;
    --le-notch-left-y: 450px;
    --le-notch-right-y: 180px;
  }
}

.le-pwa-inners::after {
  content: "";
  display: block;
  height: 27px;
  margin: 8px -7px -8px;
  background: radial-gradient(circle at 10px 0, transparent 10px, rgba(219, 235, 255, 0.9) 11px) repeat-x;
  background-size: 28px 28px;
  opacity: 0.92;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
/* 
.le-pwa-close {
  position: absolute;
  top: 90px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #1d2939;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  z-index: 20;
} */

.le-pwa-close {
  position: absolute;
  top: -50px;
  right: -0px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #1d2939;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  z-index: 30;
}

.le-pwa-close svg {
  width: 22px;
  height: 22px;
}

.le-pwa-close:hover,
.le-pwa-install-btn:hover,
.le-pwa-later-btn:hover,
.demo-preview-btn:hover {
  transform: translateY(-1px);
}

.le-pwa-stamp {
  position: absolute;
  top: 46px;
  left: 24px;
  width: 60px;
  height: 60px;
  color: rgba(0, 87, 217, 0.18);
  transform: rotate(-10deg);
}

.le-pwa-stamp circle,
.le-pwa-stamp path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.le-pwa-stamp path {
  fill: currentColor;
  stroke-width: 0;
}

.le-pwa-stamp::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 22px;
  width: 58px;
  height: 20px;
  border-top: 2px solid rgba(0, 87, 217, 0.1);
  border-bottom: 2px solid rgba(0, 87, 217, 0.08);
  border-radius: 999px;
}

.le-pwa-dot-decor {
  position: absolute;
  top: 11px;
  right: 19px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 9px;
  opacity: 0.76;
}

.le-pwa-dot-decor span {
  width: 8px;
  height: 8px;
  background: #dbeafe;
  border-radius: 999px;
}

.le-pwa-header {
  position: relative;
  padding: 8px 34px 4px;
  text-align: center;
}

.le-pwa-logo {
  width: min(260px, 50%);
  height: auto;
  object-fit: contain;
}

.le-pwa-inner {
  position: relative;
  margin: 0 8px 14px;
  padding: 26px 18px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.99));
  border: 1px solid rgba(7, 27, 143, 0.08);
  border-radius: 26px;
  /* border-top-left-radius: 26px; */
  /* border-top-right-radius: 26px; */
  box-shadow: 0 14px 40px rgba(7, 27, 143, 0.08);
}

.le-pwa-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px 0 0;
  border-radius: 999px;
  background: var(--le-soft-blue);
  color: var(--le-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.le-pwa-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--le-yellow);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(7, 27, 143, 0.08);
  border: 1px solid #eef5ff;
}

.le-pwa-badge-icon svg {
  width: 18px;
  height: 18px;
}

.le-pwa-hero {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
  align-items: center;
  margin-top: 0px;
}

.le-pwa-hero h2 {
  margin: 0;
  color: var(--le-text);
  font-size: clamp(26px, 8vw, 18px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.le-pwa-title-line {
  width: 52px;
  height: 4px;
  margin: 8px 0 8px 0;
  background: var(--le-yellow);
  border-radius: 999px;
}

.le-pwa-hero p {
  margin: 0;
  color: var(--le-muted);
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.le-pwa-route-visual {
  position: relative;
  min-height: 150px;
}

.le-pwa-pin {
  position: absolute;
  top: -26px;
  right: 6px;
  width: 24px;
  height: 24px;
  background: var(--le-yellow);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(255, 210, 26, 0.4);
}

.le-pwa-pin::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #ffffff;
  border-radius: 999px;
}

/* .le-pwa-route {
  position: absolute;
  top: 38px;
  right: 36px;
  width: 78px;
  height: 110px;
  border-right: 2px dashed rgba(0, 87, 217, 0.23);
  border-bottom: 2px dashed rgba(0, 87, 217, 0.23);
  border-radius: 0 0 56px 0;
  transform: rotate(12deg);
} */

/* .le-pwa-route {
  position: absolute;
  top: 0px;
  right: -7px;
  width: 96px;
  height: 150px;
  pointer-events: none;
}

.le-pwa-route svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.le-pwa-route path {
  fill: none;
  stroke: rgba(152, 190, 255, 0.9);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4 7;
} */

.le-pwa-route {
  position: absolute;
  top: 1px;
  right: -2px;
  width: 84px;
  height: 145px;
  pointer-events: none;
}

.le-pwa-route svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.le-pwa-route path {
  fill: none;
  stroke: rgba(152, 190, 255, 0.9);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4 7;
}

.le-pwa-suitcase {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 62px;
  height: 76px;
  color: #ffffff;
  filter: drop-shadow(0 16px 20px rgba(0, 87, 217, 0.22));
}

.le-pwa-suitcase svg {
  width: 100%;
  height: 100%;
}

.le-pwa-suitcase rect {
  fill: #1f62c6;
}

.le-pwa-suitcase path,
.le-pwa-suitcase circle {
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}

.le-pwa-suitcase .handle {
  stroke: #0a3f9e;
}

.le-pwa-accordion {
  margin-top: 0px;
  overflow: hidden;
  border: 1px solid var(--le-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.le-pwa-accordion-item + .le-pwa-accordion-item {
  border-top: 1px solid rgba(7, 27, 143, 0.08);
}

.le-pwa-accordion-trigger {
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  padding: 8px;
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.le-pwa-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--le-soft-blue);
  color: var(--le-blue-2);
  display: grid;
  place-items: center;
}

.le-pwa-feature-icon svg {
  width: 20px;
  height: 20px;
}

.le-pwa-feature-title {
  color: var(--le-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.le-pwa-chevron {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--le-blue-2);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.le-pwa-chevron svg {
  width: 18px;
  height: 18px;
}

.le-pwa-shell {
  position: relative;
  width: min(100%, 370px);
  max-height: calc(100dvh - 64px);
  overflow: visible;
  z-index: 2;
  margin: auto;
}

.le-pwa-accordion-panel {
  display: none;
  padding: 0 18px 16px 72px;
  color: var(--le-muted);
  font-size: 10px;
  line-height: 1.55;
}

.le-pwa-accordion-item.is-open .le-pwa-accordion-panel {
  display: block;
}

.le-pwa-accordion-item.is-open .le-pwa-chevron {
  transform: rotate(180deg);
}

.le-pwa-ios-guide,
.le-pwa-status {
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 8.5px;
  line-height: 1.5;
  display: block!important;
}

.le-pwa-ios-guide {
  background: #fff8dc;
  color: #5f4700;
}

.le-pwa-status {
  background: #eef5ff;
  color: #073b9a;
}

.le-pwa-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.le-pwa-install-btn,
.le-pwa-later-btn {
  width: 100%;
  min-height: 40px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease, opacity 0.16s ease;
}

.le-pwa-install-btn {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--le-blue-3), #071b8f);
  box-shadow: 0 14px 28px rgba(0, 76, 210, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.le-pwa-install-btn:hover {
  filter: brightness(1.03);
}

.le-pwa-install-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
  transform: none;
}

.le-pwa-download-icon svg {
  width: 24px;
  height: 24px;
}

.le-pwa-later-btn {
  background: #ffffff;
  color: var(--le-blue-2);
  border: 1px solid rgba(0, 87, 217, 0.55);
}

@keyframes lePwaPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .demo-page {
    padding: 22px 14px 34px;
  }

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

  .demo-search-card {
    grid-template-columns: 1fr;
  }

  .demo-search-card button {
    min-height: 54px;
  }
}

@media (max-width: 420px) {
  .le-pwa-overlay {
    padding: 10px;
  }

  .le-pwa-card {
    border-radius: 28px;
  }

  .le-pwa-header {
    padding: 2px 70px 0px;
  }

  .le-pwa-inner {
    margin: 0 12px 14px;
    padding: 8px;
  }

  .le-pwa-hero {
    grid-template-columns: 1fr 86px;
  }

  .le-pwa-route-visual {
    min-height: 150px;
  }

  .le-pwa-hero h2 {
    font-size: 26px;
  }

  .le-pwa-hero p {
    font-size: 12px;
  }

  .le-pwa-badge {
    font-size: 8.5px;
    letter-spacing: 0.13em;
  }

  .le-pwa-accordion-trigger {
    grid-template-columns: 40px 1fr 28px;
    gap: 12px;
  }

  .le-pwa-feature-icon {
    width: 40px;
    height: 40px;
  }

  .le-pwa-accordion-panel {
    padding-left: 66px;
  }

  .le-pwa-stamp,
  .le-pwa-dot-decor {
    opacity: 0.45;
  }
}

.le-pwa-bottom-divider{height:4px;border-radius:999px;background:#e6ecf5;margin-top:12px;}

#lePwaDesc{ text-align:left !important; text-justify:auto !important; word-spacing:normal !important; letter-spacing:-0.02em !important; margin-bottom: 0px !important; }

/* PWA install prompt v2 */
.le-pwa-v2-overlay {
  padding: 20px 14px;
}

.le-pwa-v2-shell {
  width: min(100%, 530px);
}

.le-pwa-v2-card {
  --le-notch-radius: 26px;
  --le-notch-left-y: 328px;
  --le-notch-right-y: 328px;
  width: min(100%, 530px);
  padding: 18px 18px 24px;
  background: #edf1f7;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 2px 0 rgba(13, 18, 31, 0.55), 0 28px 76px rgba(3, 12, 49, 0.34);
}

.le-pwa-v2-card::before,
.le-pwa-v2-card::after {
  display: none !important;
}

.le-pwa-v2-close {
  top: -54px;
  right: 0;
}

.le-pwa-v2-hero {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  border-radius: 8px;
  background: #cbd5e1;
}

.le-pwa-v2-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-pwa-v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 38, 0.22), rgba(8, 20, 38, 0.03) 52%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.le-pwa-v2-kicker {
  position: absolute;
  top: 30px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 25px;
  padding: 3px 14px 3px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  color: #071b8f;
  text-transform: uppercase;
  font-size: 7px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.le-pwa-v2-kicker img {
  width: auto;
  height: 25px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15) !important;
  position: absolute;
  left: -3px;
  padding: 5px;
}
span.span-title {
    padding-left: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.le-pwa-v2-copy {
  position: absolute;
  left: 28px;
  bottom: 30px;
  z-index: 2;
  width: min(78%, 390px);
  color: #fff;
}

.le-pwa-v2-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.24);
}

.le-pwa-v2-copy h2 em {
  display: block;
  font-style: italic;
  white-space: nowrap;
}

.le-pwa-v2-copy h2 span {
  display: inline-block;
  position: relative;
  color: #ffd21a;
  margin-top: 2px;
  padding: 0 10px;
  white-space: nowrap;
  background:
    linear-gradient(rgba(37, 54, 62, 0.55), rgba(37, 54, 62, 0.55)) center / calc(100% - 18px) 72% no-repeat,
    linear-gradient(#1a8dff, #1a8dff) left bottom / 2px 70% no-repeat,
    linear-gradient(#1a8dff, #1a8dff) right bottom / 2px 70% no-repeat;
}

.le-pwa-v2-copy h2 span::before,
.le-pwa-v2-copy h2 span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1a8dff;
}

.le-pwa-v2-copy h2 span::before {
  left: -3px;
  bottom: 20px;
}

.le-pwa-v2-copy h2 span::after {
  right: -3px;
  bottom: -6px;
}
span.screen-overlay {
    background: #053d7d5e !important;
}

.le-pwa-v2-copy p {
  width: min(100%, 248px);
  margin: 14px 0 0 !important;
  padding: 7px 16px;
  border-radius: 999px;
  background: #071b8f;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center !important;
  letter-spacing: 0 !important;
}

.le-pwa-v2-logo {
  position: absolute;
  z-index: 2;
  right: 34px;
  top: 76px;
  width: 96px;
  height: auto;
  object-fit: contain;
}

.le-pwa-v2-divider {
  height: 36px;
  margin: 0 7px;
  border-bottom: 2px dashed rgba(18, 27, 43, 0.5);
}

.le-pwa-v2-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding: 34px 18px 26px;
}

.le-pwa-v2-benefit {
  position: relative;
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 6px 12px 6px 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #2f3341;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.le-pwa-v2-benefit img {
  position: absolute;
  left: -8px;
  width: auto;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(15, 23, 42, 0.13));
  background: white;
  border-radius: 50%;
  padding: 6px;
}

.le-pwa-v2-ios-guide,
.le-pwa-v2-status {
  margin: 0 34px 14px;
  font-size: 10px;
  text-align: center;
}

.le-pwa-v2-actions {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.le-pwa-v2-install-btn {
  width: auto;
  min-width: 230px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #112a9f, #168eff);
  box-shadow: 0 12px 24px rgba(0, 76, 210, 0.26);
  font-size: 15px;
  font-weight: 800;
}

.le-pwa-v2-install-btn .le-pwa-download-icon svg {
  width: 18px;
  height: 18px;
}

.le-pwa-v2-later-btn {
  width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #071b8f;
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .le-pwa-v2-card {
    --le-notch-radius: 22px;
    --le-notch-left-y: 297px;
    --le-notch-right-y: 297px;
    padding: 14px 14px 22px;
    border-radius: 22px;
  }

  .le-pwa-v2-hero {
    min-height: 250px;
  }

  .le-pwa-v2-kicker {
    top: 24px;
    left: 20px;
  }

  .le-pwa-v2-copy {
    left: 24px;
    bottom: 28px;
    width: 76%;
  }

  .le-pwa-v2-copy h2 {
    font-size: 22px;
  }

  .le-pwa-v2-logo {
    right: 22px;
    top: 72px;
    width: 84px;
  }

  .le-pwa-v2-divider {
    height: 34px;
  }

  .le-pwa-v2-benefits {
    gap: 12px;
    padding: 28px 14px 24px;
  }

  .le-pwa-v2-benefit {
    font-size: 11px;
    padding-right: 8px;
  }
}

@media (max-width: 420px) {
  .le-pwa-v2-card {
    --le-notch-left-y: 278px;
    --le-notch-right-y: 278px;
    padding: 12px 12px 20px;
  }

  .le-pwa-v2-hero {
    min-height: 235px;
  }

  .le-pwa-v2-kicker {
    top: 20px;
    left: 16px;
    max-width: calc(100% - 32px);
    font-size: 6.5px;
  }

  .le-pwa-v2-copy {
    left: 20px;
    bottom: 22px;
    width: 76%;
  }

  .le-pwa-v2-copy h2 {
    font-size: 18px;
  }

  .le-pwa-v2-copy p {
    width: 190px;
    max-width: 100%;
    font-size: 6.5px;
  }

  .le-pwa-v2-logo {
    right: 16px;
    top: 72px;
    width: 72px;
  }

  .le-pwa-v2-benefits {
    grid-template-columns: 1fr;
    padding: 24px 18px 22px;
  }

  .le-pwa-v2-benefit {
    min-height: 32px;
    font-size: 12px;
  }

  .le-pwa-v2-install-btn {
    width: min(100%, 230px);
    min-width: 0;
    font-size: 14px;
  }
}
