html {
  scroll-behavior: smooth;
}

.landing-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

/* HERO */
.landing-hero {
  text-align: center;
  padding: 12px 0 34px;
}

.landing-title img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 8px 18px rgba(255, 210, 90, .22));
}

.landing-promo img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 26px rgba(255, 178, 42, .28));
}


/* --- CTA CHƠI NGAY (TĨNH) --- */
.landing-cta {
  display: inline-block;
  margin: 2px auto 14px;
}

.landing-cta img {
  width: 100%;
  max-width: 310px;
  height: auto;
  display: block;
  /* Đã loại bỏ animation ở đây để nó đứng tĩnh */
  filter: drop-shadow(0 0 14px rgba(255, 215, 110, .55));
  transition: all 0.3s ease; /* Thêm để lúc hover mượt hơn */
}

/* --- TẢI APP (CÓ HIỆU ỨNG RUNG) --- */
.landing-download {
  display: block;
  width: fit-content;
  margin: 0 auto 14px; /* Căn giữa */
}

.landing-download img {
  width: 100%;
  max-width: 310px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 215, 110, .55));
  /* Chỉ giữ hiệu ứng Pulse cho nút Tải App */
  animation: landingPulse 1.25s ease-in-out infinite;
  transition: all 0.3s ease;
}

/* HIỆU ỨNG HOVER CHUNG (Vẫn giữ để khi di chuột vào cả 2 đều có phản hồi) */
.landing-cta:hover img,
.landing-download:hover img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 0 28px rgba(255, 215, 110, .95));
}

/* KEYFRAMES */
@keyframes landingPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

/* NOTE */
.landing-note {
  margin-top: 8px;
  color: #ffe36e;
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,.85);
  text-align: center; /* Căn giữa ghi chú */
}

.landing-note strong {
  color: #fff1a6;
}

/* FEATURE STRIP */
.landing-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto 24px;
}

.landing-features div {
  background: linear-gradient(180deg, rgba(255,226,130,.16), rgba(80,35,8,.55));
  border: 1px solid rgba(255,218,120,.22);
  border-radius: 14px;
  color: #fff1a6;
  text-align: center;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

/* CONTENT */

.landing-content {
  background: rgba(20, 8, 5, .72);
  border: 1px solid rgba(255, 218, 120, .22);
  border-radius: 22px;
  padding: 28px;
  box-shadow:
    0 24px 70px rgba(0,0,0,.46),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);

}

.landing-content h1,
.landing-content h2,
.landing-content h3 {
  line-height: 1.35;
  background: linear-gradient(180deg,#fff9c9 0%,#ffd866 55%,#b66a10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-content h1 {
  font-size: 30px;
  margin-bottom: 22px;
}

.landing-content h2 {
  font-size: 24px;
  margin: 34px 0 14px;

}

.landing-content h3 {
  font-size: 20px;
  margin: 26px 0 12px;
}

.landing-content p,
.landing-content li {
  color: #fff;
  font-size: 16px;
  line-height: 1.85;
}

.landing-content a {
  color: #ffe36e;
  font-weight: 700;
}



.landing-content img {
  max-width: 100%;
  height: auto;
}

.landing-content figure {
  margin: 28px auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 218, 120, .18);
  box-shadow: 0 18px 48px rgba(0,0,0,.42);
}

.landing-content figure img {
  display: block;
  width: 100%;
  transition: .35s ease;
}

.landing-content figure:hover img {
  transform: scale(1.02);
}

.landing-content figcaption {
  color: #ffd878;
  font-size: 13px;
  text-align: center;
  padding: 8px 10px 10px;

}

/* EASY TABLE OF CONTENTS */
#ez-toc-container {
  display: table !important;
  width: auto !important;
  max-width: 100% !important;
  background: rgba(0,0,0,.58) !important;
  border: 1px solid rgba(255,255,255,.72) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  margin: 24px 0 18px !important;
  padding: 10px 20px 10px 10px !important;
  color: #fff !important;
}

.ez-toc-box-title {
  display: none !important;
}

#ez-toc-container .ez-toc-title-container {
  display: table !important;
  width: auto !important;
}

#ez-toc-container .ez-toc-title,
#ez-toc-container .ez-toc-title-toggle {
  display: inline !important;
  vertical-align: middle !important;
}

#ez-toc-container .ez-toc-title {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.45 !important;
}

#ez-toc-container .ez-toc-title-toggle {
  margin-left: 10px !important;
}

#ez-toc-container .ez-toc-pull-right {
  float: none !important;
  margin-left: 10px !important;
}

#ez-toc-container a.ez-toc-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 35px !important;
  height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.55) !important;
  border-radius: 5px !important;
  background: transparent !important;
  box-shadow: none !important;
}

#ez-toc-container .ez-toc-js-icon-con,
#ez-toc-container .ez-toc-icon-toggle-span {
  float: none !important;
  position: static !important;
  left: auto !important;
  width: 35px !important;
  height: 30px !important;
  border: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#ez-toc-container svg {
  width: 18px !important;
  height: 18px !important;
  fill: #fff !important;
  color: #fff !important;
}

#ez-toc-container nav {
  margin-top: 12px !important;
}

#ez-toc-container ul {
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

#ez-toc-container ul ul {
  padding-left: 24px !important;
}

#ez-toc-container li {
  margin: 5px 0 !important;
  line-height: 1.55 !important;
  list-style: none !important;
}

#ez-toc-container a,
#ez-toc-container .ez-toc-link {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

#ez-toc-container a:hover,
#ez-toc-container .ez-toc-link:hover {
  color: #ffd76d !important;
  -webkit-text-fill-color: #ffd76d !important;
}

/* FAQ */
.landing-faq details {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,218,120,.18);
  border-radius: 14px;
  margin: 12px 0;
  padding: 15px 18px;
}

.landing-faq summary {
  cursor: pointer;
  color: #ffe36e;
  font-weight: 700;
}

.landing-faq details p {
  margin: 10px 0 0;
}

/* ẨN FOOTER MẶC ĐỊNH CỦA THEME Ở HOME */
body.home .footer-wrapper {
  display: none;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  display: none;
}

/* LANDING FOOTER COMPACT */
.landing-footer-pro {
  width: 100%;
  max-width: none;
  margin: 44px 0 0;
  padding: 34px 24px 22px;
  background: rgba(22,12,5,.94);
  border-top: 1px solid rgba(255,218,120,.18);
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.footer-top,
.footer-support,
.footer-contact-line,
.footer-pro-menu,
.footer-copy {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(255,190,60,.25));
}

.footer-social-wrap h3,
.footer-dmca-wrap h3 {
  margin: 0 0 14px;
  color: #ffe36e;
  font-size: 17px;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social a {
  display: block;
  transition: .25s;
}

.footer-social img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
}

.footer-dmca-img {
  width: 165px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer-support {
  margin-top: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact-line {
  margin: 8px auto 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #fff;
  font-size: 15px;
}

.footer-contact-line strong {
  color: #ffe36e;
}

.footer-pro-menu {
  margin: 14px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-pro-menu a {
  color: #ffd76d;
  -webkit-text-fill-color: #ffd76d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  text-decoration: none;
  border-right: 1px solid rgba(255,218,120,.35);
}

.footer-pro-menu a:last-child {
  border-right: 0;
}

.footer-pro-menu a:hover {
  color: #fff1a6;
  -webkit-text-fill-color: #fff1a6;
}

.footer-copy {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,218,120,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* FLOATING SIDE */
.landing-side {
  position: fixed;
  top: 180px;
  z-index: 90;
  width: 220px;
  transition: .25s ease;
}

.landing-side.left {
  left: 120px;
}

.landing-side.right {
  right: 120px;
}

.landing-side img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* RESPONSIVE SIDE */
@media (max-width: 1600px) {
  .landing-side {
    width: 190px;
  }

  .landing-side.left {
    left: 50px;
  }

  .landing-side.right {
    right: 50px;
  }
}

@media (max-width: 1280px) {
  .landing-side {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .landing-main {
    max-width: 100%;
    padding: 0 12px 95px;
  }

  .landing-hero {
    padding-top: 4px;
  }

  .landing-title img,
  .landing-promo img {
    max-width: 270px;
  }

  .landing-cta img,
  .landing-download img {
    max-width: 280px;
  }

  .landing-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-content {
    padding: 18px;
    border-radius: 16px;
  }

  .landing-content h1 {
    font-size: 23px;
  }

  .landing-content h2 {
    font-size: 20px;
  }

  .landing-content h3 {
    font-size: 18px;
  }

  .landing-content p,
  .landing-content li {
    font-size: 15px;
  }

  #ez-toc-container {
    padding: 10px 12px !important;
  }

  #ez-toc-container .ez-toc-title {
    font-size: 16px !important;
  }

  #ez-toc-container a,
  #ez-toc-container .ez-toc-link {
    font-size: 14px !important;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 99999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-sticky-cta a {
    text-align: center;
    padding: 13px 10px;
    border-radius: 999px;
    color: #2a1200;
    -webkit-text-fill-color: #2a1200;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(180deg, #fff3a3, #ffbf35);
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
  }

  .landing-footer-pro {
    width: calc(100% - 20px);
    margin-top: 30px;
    padding: 28px 12px 22px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px;
  }

  .footer-logo-wrap {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-social-wrap h3,
  .footer-dmca-wrap h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-social img {
    width: 42px;
    height: 42px;
  }

  .footer-dmca-img {
    width: 135px;
  }

  .footer-support {
    margin-top: 18px;
    font-size: 13px;
  }

  .footer-contact-line {
    font-size: 13px;
    gap: 4px 10px;
  }

  .footer-pro-menu {
    margin-top: 12px;
  }

  .footer-pro-menu a {
    font-size: 12.5px;
    padding: 0 6px;
  }

  .footer-copy {
    font-size: 12px;
  }
}


/* Ẩn trên PC */
.hero-mobile-icons{
    display:none;
}

/* Chỉ hiện trên mobile */
@media (max-width:767px){

    .hero-mobile-icons{
        display:block;
    }

    .hero-mobile-icons span{
        position:fixed;
        z-index:99998;
    }

    .hero-mobile-icons img{
        width:42px;
        height:42px;
        display:block;
    }

    /* Telegram góc trái trên */
    .hero-mobile-icons .icon-tl{
        top:18px;
        left:18px;
    }

    /* Chat góc phải trên */
    .hero-mobile-icons .icon-tr{
        top:18px;
        right:18px;
    }

    /* Facebook dưới bên trái */
    .hero-mobile-icons .icon-bl{
        top:74px;
        left:18px;
    }

}

/* --- RESET & VỊ TRÍ CHUNG --- */
*, *:before, *:after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.sw-sidebar {
    position: fixed;
    top: 220px;
    z-index: 9999;
    width: 230px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1300px) {
    #banners-left { right: calc(50% + 320px + 3.5rem); }
    #social-right { left: calc(50% + 320px + 3.5rem); }
}

/* --- KHUNG VIỀN & NỀN GRADIENT --- */
.banners_info_box {
    border: 2px solid #ffffff;
    border-radius: 1rem;
    background: linear-gradient(to bottom, #8c5d26 0%, #1d092b 15%, #1b0b19 50%, #231213 90%, #2a190f 100%);
    padding: 20px 15px; /* Padding rộng để không bị sát lề */
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* --- ĐỊNH DẠNG SIDE TRÁI --- */
.notis_slogan_gold {
    text-align: center;
    background: linear-gradient(to bottom, #f9ca34 0%, #f6a811 90%, #ffaf08 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900; font-size: 14px; text-transform: uppercase; margin-bottom: 12px;
}

.notis_ttl_img img { width: 85%; margin: 0 auto 15px; display: block; }

/* Fix kích thước 1.1.1.1 và Sun.win */
.fix-size-1111 { width: 100px !important; height: auto; display: block; margin-top: 5px; }
.brand-fix-size a { font-size: 14px !important; color: #fff; font-weight: bold; text-decoration: none; }

.sw-step-list { list-style: none; padding: 0; margin: 0; }
.sw-step-list li {
    position: relative; padding: 10px 0 10px 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center;
}
.sw-step-list li:last-child { border-bottom: none; }

/* Vẽ số 1-2-3 */
.sw-step-list li::before {
    position: absolute; left: 0; width: 24px; height: 18px;
    background: #333; color: #fff; font-size: 11px; font-weight: bold;
    display: flex; justify-content: center; align-items: center;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.sw-step-list li:nth-child(1)::before { content: "1"; }
.sw-step-list li:nth-child(2)::before { content: "2"; }
.sw-step-list li:nth-child(3)::before { content: "3"; }

.sw-step-lbl { font-size: 10px; color: #8e8e8e; }
.sw-step-dl-ic { position: absolute; right: 0; }
.sw-step-dl-ic img { width: 20px; }

/* Màu xám bạc cho ghi chú */
.sw-footer-note {
    font-size: 11px; color: #bcbab9 !important;
    text-align: center; margin-top: 15px; line-height: 1.5;
}
.sw-footer-note span { color: #f9ca34; font-weight: bold; }

/* --- ĐỊNH DẠNG SIDE PHẢI --- */
.only-banner-frame { padding: 10px !important; margin-bottom: 15px; }
.banner-inner-box img { width: 100%; border-radius: 6px; display: block; }

.group-contact-external { display: flex; flex-direction: column; gap: 8px; }

/* KHỬ LỖI Ô VUÔNG (TRANG TRÍ NÚT RỜI) */
.btn-clean {
    display: block; width: 100%; height: 50px;
    background-size: contain; background-repeat: no-repeat; background-position: center;
    transition: 0.3s;
    
    /* Các lệnh khử ký tự lạ */
    font-size: 0 !important;
    color: transparent !important;
    text-indent: -9999px;
    overflow: hidden;
}
.btn-clean::before, .btn-clean::after { content: none !important; }

.icon-fb { background-image: url('/wp-content/uploads/2026/05/imgi_29_icon-fb.png'); }
.icon-tele { background-image: url('/wp-content/uploads/2026/05/imgi_30_icon-tele.png'); }
.icon-chat { background-image: url('/wp-content/uploads/2026/05/imgi_31_icon-livechat.png'); }

.btn-clean:hover { transform: scale(1.03); filter: brightness(1.2); }

/* ẨN TRÊN MOBILE */
@media screen and (max-width: 1200px) {
    .sw-sidebar { display: none !important; }
}

/* --- CONTAINER CHÍNH (FIXED TRÊN MOBILE) --- */
.notis_info.catfishmb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    border: none !important;
    margin-top: 0;
    padding-bottom: 5px;
    display: block;
    
    /* KỸ THUẬT ĐẨY BACKGROUND XUỐNG DƯỚI ĐỂ SLOGAN HIỆN LÊN ĐẦU */
    background-image: url('/wp-content/uploads/2026/05/bg-linkchinhhang.png') !important;
    background-repeat: no-repeat !important;
    background-position: 50% 2.3rem !important; /* Đẩy nền xuống 2.3rem để chừa chỗ cho slogan */
    background-size: 100% calc(100% - 2.3rem) !important; /* Thu nhỏ chiều cao nền để hở đầu */
}

/* --- CONTAINER TỔNG --- */
.notis_info.catfishmb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    display: block;
    border: none !important;
}

/* --- DẢI ĐEN SLOGAN --- */
.catfishmb_slogan_full {
    background: #000;
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible !important; 
    border-top: 1px solid #333;
}

.catfishmb_slogan_full img {
    width: 100% !important;
    max-width: 440px;
    height: auto !important;
    display: block;
    position: absolute;
    bottom: -15px; 
    z-index: 99;
}

/* --- PHẦN THÂN NỀN NÂU --- */
.catfishmb_body {
    background: url('/wp-content/uploads/2026/05/bg-linkchinhhang.png') no-repeat center top;
    background-size: 100% 100%;
    /* Tăng nhẹ padding-top để chừa không gian cho slogan đè lên */
    padding: 22px 0 8px 0; 
    margin-top: -1px;
}

/* --- 3 CỘT NỘI DUNG (FIX THẲNG HÀNG) --- */
.banner-lst {
    display: flex;
    list-style: none;
    padding: 0 5px;
    margin: 0;
    align-items: flex-start; /* Căn lề từ đỉnh để các nhãn 1-2-3 luôn bằng nhau */
}

.banner-lst li {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.banner-lst li:last-child { border-right: none; }

/* Nhãn số và chữ (Cài đặt - Truy cập - Nhận link) */
.banner-lst-lbl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 15px; /* Khống chế chiều cao nhãn để hàng chữ luôn thẳng */
    margin-bottom: 8px; /* Tạo khoảng cách đều với nội dung bên dưới */
}

.numberlist {
    background: #3c3c3c;
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    width: 14px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.lbl-txt { font-size: 9px; color: #a5a5a5; text-transform: uppercase; white-space: nowrap; }

.icondlapp img { width: 10px; height: auto; vertical-align: middle; }

/* FIX KÍCH THƯỚC NỘI DUNG (ẢNH 1.1.1.1 VÀ TEXT) */
.banner-lst-txt {
    height: 25px; /* Tăng từ 15px lên 25px để chứa ảnh cân đối hơn */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* THU NHỎ ẢNH 1.1.1.1 ĐỂ KHÔNG BỊ QUÁ TO */
.banner-lst-txt img {
    width: 75px !important; /* Giảm từ 95px xuống 75px để cân bằng với chữ */
    height: auto;
    display: block;
}

.brand-link-mb {
    color: #fff !important;
    font-size: 18px; /* Giảm nhẹ để cân đối */
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
}

.gold-txt-mb { 
    color: #f9ca34; 
    font-size: 18px; 
    font-weight: bold; 
    line-height: 1;
}

/* SLOGAN PHỤ */
.notis_ttllink_mb { text-align: center; margin: 12px 0 4px 0; }
.notis_ttllink_mb img { height: 20px; width: auto; }

/* GHI CHÚ CUỐI */
.notis_note_mb {
    font-size: 10px;
    color: #999 !important;
    text-align: center;
    padding: 0 10px;
    line-height: 1.4;
}

.notis_note_mb a { color: #c19a4d; font-weight: bold; text-decoration: none; }

.blink-blue-mb {
    color: #3b82f6 !important;
    animation: blinkerPulse 1.5s infinite;
}

@keyframes blinkerPulse {
    50% { opacity: 0.5; }
}

/* Đẩy body web lên */
@media screen and (max-width: 991px) {
    body { padding-bottom: 150px !important; }
}

/* FIX CLICK CTA */
.landing-hero,
.landing-cta{
    position: relative;
    z-index: 100001;
}

.landing-cta{
    display:inline-block;
    pointer-events:auto !important;
}

.landing-cta img{
    pointer-events:auto !important;
}

/* tránh layer fixed đè lên nút */
.hero-mobile-icons,
.mobile-sticky-cta{
    pointer-events:none;
}

/* nhưng vẫn cho icon bên trong click */
.hero-mobile-icons a,
.mobile-sticky-cta a{
    pointer-events:auto;
}