

.wz2 {
  --wz2-green: var(--wz-wa-green);
  --wz2-wa-header: var(--wz-wa-header);
  --wz2-wa-canvas: var(--wz-wa-canvas);
  --wz2-wa-out: var(--wz-wa-out);
  --wz2-wa-link: var(--wz-wa-link);

  position: relative;
  padding: var(--wz-sec-y) 0;
  background: var(--wz-wash);
  overflow: hidden;
  font-family: var(--wz-ui-font);
}

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

.wz2 :where(p, h2, ul, li) { margin: 0; padding: 0; }

.wz2 :where(ul) { list-style: none; }

.wz2-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 460px 1fr;
  grid-template-areas:
    "visual lead"
    "visual proof"
    "visual cta";
  align-content: center;
  column-gap: 56px;
  row-gap: 26px;
}

.wz2-visual {
  grid-area: visual;
  position: relative;
  width: 460px;
  height: 760px;
  align-self: center;
}

.wz2-visual::before,
.wz2-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.wz2-visual::before {
  left: -40px; top: 40px; width: 580px; height: 620px;
  background: radial-gradient(closest-side, rgba(247, 180, 206, .75), rgba(253, 239, 245, 0));
}

.wz2-visual::after {
  left: -56px; top: 360px; width: 430px; height: 380px;
  background: radial-gradient(closest-side, rgba(123, 227, 180, .42), rgba(253, 239, 245, 0));
}

.wz2-phone {
  position: absolute;
  left: 0; top: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 316px;
  height: 640px;
  border: 1px solid #efe4e9;
  border-radius: 36px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 54px -12px rgba(122, 42, 74, .22);
}

.wz2-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 5px 22px;
  background: var(--wz2-wa-header);
  color: #fff;
  font-family: var(--wz-display-font);
  font-size: 11px;
  font-weight: 600;
}

.wz2-sysicons { display: flex; align-items: center; gap: 5px; }
.wz2-sysicons svg { width: 13px; height: 13px; }

.wz2-chathead {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px 10px 8px;
  background: var(--wz2-wa-header);
  color: #fff;
}

.wz2-chathead svg { width: 20px; height: 20px; flex: none; }
.wz2-headacts { display: flex; align-items: center; gap: 15px; margin-left: auto; }
.wz2-headacts svg { width: 17px; height: 17px; }

.wz2-unread {
  font-family: var(--wz-display-font);
  font-size: 12.5px;
  font-weight: 600;
  margin-right: 2px;
}

.wz2-avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7a8c4, var(--wz-accent));
  font-family: var(--wz-display-font);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
}

.wz2-who { display: flex; flex-direction: column; min-width: 0; }
.wz2-who b {
  font-family: var(--wz-display-font);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wz2-who i { font-size: 10.5px; font-style: normal; color: #a9ded2; line-height: 1.3; }

.wz2-canvas {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 12px 10px;
  overflow: hidden;
  background-color: var(--wz2-wa-canvas);
  background-image: url("../img/wa-doodle.svg");
  background-size: 160px 160px;
}

.wz2-datechip {
  align-self: center;
  padding: 4px 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .85);
  font-size: 9.5px;
  font-weight: 500;
  color: #54656f;
}

.wz2-row { display: flex; }
.wz2-row--in { justify-content: flex-start; }
.wz2-row--out { justify-content: flex-end; }

.wz2-bubble {
  position: relative;
  max-width: 85%;
  padding: 7px 10px 6px;
  border-radius: 2px 12px 12px 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wz-wa-ink);
  box-shadow: 0 1px 2px rgba(11, 20, 26, .13);
}

.wz2-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0; height: 0;
  border-bottom: 13px solid transparent;
}

.wz2-row--in .wz2-bubble::before {
  left: -8px;
  border-right: 8px solid #fff;
}

.wz2-row--out .wz2-bubble {
  border-radius: 12px 2px 12px 12px;
  background: var(--wz2-wa-out);
}

.wz2-row--out .wz2-bubble::before {
  right: -8px;
  border-left: 8px solid var(--wz2-wa-out);
}

.wz2-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 1px;
  font-size: 9.5px;
  color: #8696a0;
}

.wz2-row--out .wz2-meta { color: var(--wz-wa-meta); }
.wz2-meta svg { width: 13px; height: 13px; color: #53bdeb; }

.wz2-template {
  width: 252px;
  max-width: 88%;
  padding: 0;
  overflow: hidden;
}

.wz2-photo { display: block; width: 100%; height: 114px; background: #ede3e7; }
.wz2-photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.wz2-tbody { display: flex; flex-direction: column; gap: 5px; padding: 8px 10px 6px; }

.wz2-thead {
  font-family: var(--wz-display-font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.wz2-ttext { font-size: 12px; line-height: 1.45; color: #3b4a54; }

.wz2-coupon {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 7px;
  background: #f0f2f5;
  font-family: var(--wz-display-font);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .01em;
}

.wz2-tfoot { font-size: 10.5px; color: #8696a0; }

.wz2-tbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 0;
  border-top: 1px solid #e9edef;
  font-family: var(--wz-display-font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wz2-wa-link);
  text-decoration: none;
}

.wz2-tbtn svg { width: 13px; height: 13px; }
.wz2-tbtn:hover { background: #f7f9fa; color: var(--wz2-wa-link); }

.wz2-tplswap { display: grid; width: 100%; min-width: 0; }

.wz2-tplswap > .wz2-tpl {
  grid-area: 1 / 1;
  align-self: end;
  min-width: 0;
}

.wz2-tplswap > .wz2-tpl--carousel,
.wz2-tplswap.is-media > .wz2-tpl--media {
  opacity: 1;
  visibility: visible;
  transition: opacity .28s ease-out, visibility 0s;
}

.wz2-tplswap > .wz2-tpl--media,
.wz2-tplswap.is-media > .wz2-tpl--carousel {
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease-in .16s, visibility 0s linear .38s;
}

.wz2-tpl--carousel { display: flex; flex-direction: column; gap: 6px; }

.wz2-carbody {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 252px;
  max-width: 88%;
  padding: 8px 10px 6px;
}

.wz2-carbody .wz2-meta { margin-top: 2px; }

.wz2-carousel {
  --wz2-lempar: cubic-bezier(.17, .84, .34, 1);
  position: relative;
  margin-right: -10px;
  padding-right: 10px;
  overflow: hidden;
}

.wz2-cartrack {
  display: flex;
  gap: 6px;
  transform: translateX(var(--geser, 0px));
  transition: transform .52s var(--wz2-lempar);
  will-change: transform;
}

.wz2-card {
  flex: none;
  width: 158px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(11, 20, 26, .13);
}

.wz2-cphoto { display: block; width: 100%; height: 132px; background: #ede3e7; }
.wz2-cphoto img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.wz2-cphoto--kanan img { object-position: 80% 50%; }

.wz2-cbody {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 9px 7px;
}

.wz2-cname {
  font-family: var(--wz-display-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--wz-wa-ink);
}

.wz2-cprice {
  font-family: var(--wz-display-font);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wz-accent);
}

.wz2-cprice s {
  margin-left: 3px;
  font-size: 10px;
  font-weight: 500;
  color: #8696a0;
}

.wz2-cbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 0;
  border-top: 1px solid #e9edef;
  font-family: var(--wz-display-font);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wz2-wa-link);
}

.wz2-cbtn svg { width: 12px; height: 12px; }

.wz2-cartouch {
  position: absolute;
  left: 0; top: 66px;
  z-index: 2;
  transform: translateX(var(--tx, 0px));
  transition: transform .52s var(--wz2-lempar);
  pointer-events: none;
}

.wz2-cartouch i {
  display: block;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(17, 27, 33, .2);
  box-shadow: 0 1px 5px rgba(11, 20, 26, .2);
  opacity: 0;

  transform: scale(.55);
  transition: opacity .13s ease, transform .13s cubic-bezier(.3, 1.5, .6, 1);
}

.wz2-cartouch.is-tekan i { opacity: 1; transform: scale(1); }

.wz2-inputbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 12px;
  background: #f0f2f5;
  color: #54656f;
}

.wz2-inputbar > svg { width: 20px; height: 20px; flex: none; }

.wz2-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 12.5px;
  color: #8696a0;
}

.wz2-field svg { width: 16px; height: 16px; flex: none; }

.wz2-mic {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #00a884;
  color: #fff;
}

.wz2-mic svg { width: 18px; height: 18px; }

.wz2-chip {
  position: absolute;
  left: 262px;
  top: calc(188px + var(--i) * 78px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 10px;
  border: 1px solid #f3e2e9;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 18px -4px rgba(122, 42, 74, .18);
  font-family: var(--wz-display-font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wz-ink);
  white-space: nowrap;
}

.wz2-chipicon {
  display: grid;
  place-items: center;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 9px;
}

.wz2-chipicon svg { width: 16px; height: 16px; }

.wz2-bcard {
  position: absolute;
  left: -34px; top: 620px;
  z-index: 3;
  width: 246px;
  padding: 14px 16px;
  border: 1px solid #f3e2e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px -6px rgba(122, 42, 74, .22);
}

.wz2-bcard-top { display: flex; align-items: center; gap: 13px; }

.wz2-stack { display: flex; flex: none; }
.wz2-stack span {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: var(--wz-display-font);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.wz2-stack span + span { margin-left: -10px; }

.wz2-bcount {
  display: block;
  font-family: var(--wz-display-font);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--wz-accent);
}

.wz2-blabel { font-size: 11.5px; color: var(--wz-ink-soft); }

.wz2-bdetail {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--wz-ink-soft);
}

.wz2-bdetail svg { width: 15px; height: 15px; flex: none; color: #53bdeb; }

.wz2-lead  { grid-area: lead;  align-self: end; }
.wz2-proof { grid-area: proof; }
.wz2-cta   { grid-area: cta;   align-self: start; margin-top: 10px; }

.wz2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wz2-sub--hp { display: none; }

.wz2-b--hp { display: none; }

.wz2-benefits { display: flex; flex-direction: column; gap: 16px; max-width: 620px; }

.wz2-benefits li { display: flex; align-items: flex-start; gap: 12px; }

.wz2-tick {
  display: grid;
  place-items: center;
  flex: none;
  width: 21px; height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--wz2-green);
  color: #fff;
}

.wz2-tick svg { width: 13px; height: 13px; }

.wz2-benefits b {
  display: block;
  font-family: var(--wz-display-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--wz-ink);
}

.wz2-benefits p {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;

  color: #3f3f3f;
}

.wz2-stats { display: flex; gap: 46px; margin-top: 26px; }

.wz2-stats b {
  display: block;
  font-family: var(--wz-display-font);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--wz-brand);
}

.wz2-stats span { font-size: 14px; color: #3f3f3f; }

.wz2-source { margin-top: 9px; font-size: 12.5px; color: #5a5a5a; }

.wz2-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.wz2-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px 9px;
  border: 3px solid var(--wz-brand);
  border-radius: 50px;
  background: var(--wz-brand);
  box-shadow: 0 3px 10px 0 rgba(237, 61, 99, .3);
  font-family: var(--wz-display-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.wz2-btn svg { width: 16px; height: 16px; }
.wz2-btn:hover,
.wz2-btn:focus { border-color: var(--wz-accent); background: var(--wz-accent); color: #fff; }

.wz2-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--wz-display-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--wz-accent);
  text-decoration: none;
}

.wz2-link svg { width: 15px; height: 15px; transition: transform .18s ease; }
.wz2-link:hover { color: var(--wz-accent); }
.wz2-link:hover svg { transform: translateX(3px); }

.wz2-btn:focus-visible,
.wz2-link:focus-visible,
.wz2-tbtn:focus-visible { outline: 2px solid var(--wz-accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .wz2-btn, .wz2-link svg { transition: none; }
  .wz2 .wz2-btn.elementor-animation-bob:active,
  .wz2 .wz2-btn.elementor-animation-bob:focus,
  .wz2 .wz2-btn.elementor-animation-bob:hover { animation: none; }
}

@media (max-width: 1024px) {
  .wz2-inner { grid-template-columns: 400px 1fr; column-gap: 40px; }
  .wz2-visual { width: 400px; }
  .wz2-chip { display: none; }
}

@media (max-width: 900px) {
  .wz2 {

    --wz-decor-ink: rgba(23, 23, 23, .022);
  }

  .wz2-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "lead"
      "proof"
      "cta";
    row-gap: 22px;
  }

  .wz2-lead, .wz2-cta { align-self: auto; }
  .wz2-cta { margin-top: 0; }

  .wz2-visual {

    width: min(330px, 100%);
    height: auto;
    margin-inline: auto;
  }

  .wz2-visual::before { left: -12px; top: 20px; width: min(340px, 108%); height: 500px; }
  .wz2-visual::after { display: none; }

  .wz2-phone { position: static; width: 100%; height: auto; }
  .wz2-canvas { min-height: 300px; padding-top: 16px; }

  .wz2-bcard { display: none; }

  .wz2 .wz2-eyebrow {
    margin-bottom: 14px;
    padding: 0;
    border: 0;
    background: none;
  }

  .wz2-benefits { gap: 13px; }
  .wz2-benefits b { font-size: 15px; }
  .wz2-benefits p { font-size: 14px; line-height: 1.45; }

  .wz2-stats,
  .wz2-source { display: none; }

  .wz2-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .wz2-btn { justify-content: center; }
  .wz2-link { justify-content: flex-start; }
}

@media (max-width: 400px) {
  .wz2-inner { padding: 0 16px; }
}

@media (min-width: 768px) and (max-width: 900px) {

  .wz2-lead { margin-inline: auto; text-align: center; }

  .wz2 .wz2-eyebrow { justify-content: center; }

  .wz2 .wz2-sub.wz2-sub { margin-inline: auto; }

  .wz2-benefits { margin-inline: auto; }

  .wz2-stats { justify-content: center; }
  .wz2-source { text-align: center; }

  .wz2-actions { justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .wz2-actions { flex-direction: row; align-items: center; gap: 32px; }

  .wz2-stats { display: flex; }
  .wz2-source { display: block; }
}

.wz2-row--closing { position: relative; }

.wz2-typing {
  display: none;
  position: absolute;
  left: 0; top: 0;
  align-items: center;
  gap: 4px;
  padding: 11px 13px;
  border-radius: 2px 12px 12px 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11, 20, 26, .13);
}

.wz2-typing::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-right: 8px solid #fff;
  border-bottom: 13px solid transparent;
}

.wz2-typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8696a0;
  animation: wz2-dot 1s ease-in-out infinite;
}

.wz2-typing i:nth-child(2) { animation-delay: .15s; }
.wz2-typing i:nth-child(3) { animation-delay: .30s; }

.wz2-anim.is-typing .wz2-typing { display: flex; }

.wz2-anim .wz2-phone { opacity: 0; transform: translateY(20px); }
.wz2-anim .wz2-datechip { opacity: 0; }
.wz2-anim .wz2-row > .wz2-bubble,
.wz2-anim .wz2-row--broadcast > .wz2-tplswap { opacity: 0; }
.wz2-anim .wz2-row--reply .wz2-meta svg { color: #8696a0; }
.wz2-anim .wz2-chip { opacity: 0; transform: translateX(26px); }
.wz2-anim .wz2-bcard { opacity: 0; transform: translateY(18px); }

.wz2-anim.is-playing .wz2-phone {
  animation: wz2-rise .6s cubic-bezier(.22, .9, .3, 1) forwards;
}

.wz2-anim.is-playing .wz2-datechip {
  animation: wz2-fade .35s ease forwards .10s;
}

.wz2-anim.is-playing .wz2-row--broadcast > .wz2-tplswap {
  animation: wz2-pop .5s cubic-bezier(.22, .9, .3, 1) forwards .25s;
}

.wz2-anim.is-playing .wz2-chip {
  animation: wz2-slide .5s cubic-bezier(.22, .9, .3, 1) forwards;
  animation-delay: calc(.5s + var(--i) * .12s);
}

.wz2-anim.is-playing .wz2-row--reply > .wz2-bubble {
  animation: wz2-pop .45s cubic-bezier(.22, .9, .3, 1) forwards 1.05s;
}

.wz2-anim.is-playing .wz2-row--reply .wz2-meta svg {
  animation: wz2-read .4s ease forwards 1.45s;
}

.wz2-anim.is-playing .wz2-row--closing > .wz2-bubble {
  animation: wz2-pop .45s cubic-bezier(.22, .9, .3, 1) forwards 2.35s;
}

.wz2-anim.is-playing .wz2-bcard {
  animation: wz2-rise .55s cubic-bezier(.22, .9, .3, 1) forwards 2.6s;
}

@keyframes wz2-rise  { to { opacity: 1; transform: none; } }
@keyframes wz2-fade  { to { opacity: 1; } }
@keyframes wz2-slide { to { opacity: 1; transform: none; } }
@keyframes wz2-read  { to { color: #53bdeb; } }
@keyframes wz2-pop {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes wz2-dot {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30%           { opacity: 1;  transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .wz2-anim .wz2-phone,
  .wz2-anim .wz2-datechip,
  .wz2-anim .wz2-row > .wz2-bubble,
  .wz2-anim .wz2-row--broadcast > .wz2-tplswap,
  .wz2-anim .wz2-chip,
  .wz2-anim .wz2-bcard { opacity: 1; transform: none; animation: none; }
  .wz2-anim .wz2-typing { display: none; }
  .wz2-typing i { animation: none; }

  .wz2-tplswap > .wz2-tpl,
  .wz2-cartrack,
  .wz2-cartouch,
  .wz2-cartouch i { transition: none; }
  .wz2-cartouch { display: none; }
}

.wz2-anim.is-idle .wz2-chip {
  opacity: 1;
  animation: wz2-float ease-in-out infinite alternate;

  animation-duration: calc(4.2s + var(--i) * .5s);
  animation-delay: calc(var(--i) * -1.1s);
}

.wz2-anim.is-idle .wz2-bcard {
  opacity: 1;
  animation: wz2-float-card 6.5s ease-in-out infinite alternate;
}

@keyframes wz2-float      { from { transform: translateY(0); } to { transform: translateY(-7px); } }
@keyframes wz2-float-card { from { transform: translateY(0); } to { transform: translateY(-5px); } }

@media (prefers-reduced-motion: reduce) {
  .wz2-anim.is-idle .wz2-chip,
  .wz2-anim.is-idle .wz2-bcard { animation: none; transform: none; }
}

.wz2 { position: relative; isolation: isolate; }

.wz2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg,
      var(--wz-decor-ink) 0 1px, transparent 1px 30px),
    linear-gradient(90deg,
      transparent 32%, var(--wz-tint) 50%, transparent 68%);
  background-size: auto, 100% 100%;
  background-repeat: repeat, no-repeat;
  -webkit-mask-image: var(--wz-decor-mask);
          mask-image: var(--wz-decor-mask);
}

@media (max-width: 767px) {
  .wz2-sub--layar { display: none; }
  .wz2-sub--hp { display: inline; }

  .wz2-b--layar { display: none; }
  .wz2-b--hp { display: inline; }
  .wz2-benefits p { display: none; }

  .wz2-benefits { gap: 16px; }
}
