/* ========== abeeZ Header ========== */
.abeeZ_header{
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(5,251,255,.30), transparent 30%),
    radial-gradient(circle at top right, rgba(235,15,48,.12), transparent 28%),
    linear-gradient(135deg, #05FBFF 0%, #6ad8ff 40%, #9ec8ff 100%);
  box-shadow: 0 10px 30px rgba(15, 48, 80, 0.12);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
}

.abeeZ_headerWrap{
  max-width: 1380px;
  margin: 0 auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.abeeZ_headerBrand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.abeeZ_headerLogoBox{
  display: inline-flex;
  align-items: center;
}

.abeeZ_headerLogoLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 24px rgba(28, 63, 114, 0.12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.abeeZ_headerLogoLink:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 63, 114, 0.18);
  border-color: #EB0F30;
}

.abeeZ_headerLogoLink img{
  display: block;
  max-width: 120px;
  height: 40px;
  object-fit: contain;
}

.abeeZ_headerHiddenTitle{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.abeeZ_headerMain{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.abeeZ_headerNav{
  display: flex;
  justify-content: center;
}

.abeeZ_headerNavList{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abeeZ_headerNavItem{
  display: flex;
}

.abeeZ_headerNavLink{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #3EC035;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 8px 18px rgba(62,192,53,0.22);
  transition: all .3s ease;
}

.abeeZ_headerNavLink:hover,
.abeeZ_headerNavLink:focus{
  color: #ffffff;
  background: linear-gradient(135deg, #3EC035 0%, #2da525 100%);
  border-color: #EB0F30;
  box-shadow: 0 12px 22px rgba(235,15,48,0.20);
  transform: translateY(-2px);
}

.abeeZ_headerTools{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.abeeZ_headerSearchOuter{
  display: flex;
  align-items: center;
}

.abeeZ_headerSearchForm{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 8px 24px rgba(34, 70, 120, 0.12);
}

.abeeZ_headerSearchField{
  position: relative;
  display: flex;
  align-items: center;
}

.abeeZ_headerSearchInput{
  width: 7em;
  min-width: 7em;
  max-width: 7em;
  height: 40px;
  border: none;
  outline: none;
  background: transparent;
  color: #15314d;
  font-size: 14px;
  font-weight: 600;
}

.abeeZ_headerSearchInput::placeholder{
  color: #4f6f8f;
}

.abeeZ_headerSearchLabel{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.abeeZ_headerSearchBtn{
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(135deg, #DCD7D6 0%, #ffffff 100%);
  color: #1c3557;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 6px 16px rgba(20, 52, 98, 0.12);
}

.abeeZ_headerSearchBtn:hover{
  border-color: #EB0F30;
  color: #EB0F30;
  transform: translateY(-2px) scale(1.03);
}

.abeeZ_mobileMenuToggle{
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 12px;
  background: linear-gradient(135deg, #DCD7D6 0%, #ffffff 100%);
  color: #16304b;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(25, 55, 90, .12);
  transition: all .3s ease;
}

.abeeZ_mobileMenuToggle:hover{
  border-color: #EB0F30;
  color: #EB0F30;
  transform: translateY(-2px);
}

.abeeZ_mobileMenuIcon{
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.abeeZ_mobileNav{
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 18px;
}

.abeeZ_mobileNav.is-open{
  display: block;
}

.abeeZ_mobileNavWrap{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(27, 61, 100, 0.12);
  overflow: hidden;
}

.abeeZ_mobileNavList{
  list-style: none;
  margin: 0;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.abeeZ_mobileNavItem{
  display: block;
}

.abeeZ_mobileNavLink{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: #849BF5;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all .3s ease;
}

.abeeZ_mobileNavLink:hover{
  border-color: #EB0F30;
  box-shadow: 0 10px 22px rgba(235,15,48,0.18);
  transform: translateY(-2px);
}

@media (max-width: 1100px){
  .abeeZ_headerWrap{
    grid-template-columns: 220px 1fr;
  }

  .abeeZ_headerNavLink{
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 860px){
  .abeeZ_headerWrap{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .abeeZ_headerMain{
    grid-template-columns: 1fr auto;
  }

  .abeeZ_headerNav{
    display: none;
  }

  .abeeZ_mobileMenuToggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .abeeZ_headerSearchInput{
    width: 6em;
    min-width: 6em;
    max-width: 6em;
  }
}

@media (max-width: 520px){
  .abeeZ_headerBrand{
    justify-content: flex-start;
  }

  .abeeZ_headerMain{
    gap: 10px;
  }

  .abeeZ_headerSearchForm{
    padding: 6px 6px 6px 10px;
  }

  .abeeZ_headerSearchInput{
    width: 5em;
    min-width: 5em;
    max-width: 5em;
    font-size: 13px;
  }

  .abeeZ_headerSearchBtn,
  .abeeZ_mobileMenuToggle{
    width: 40px;
    height: 40px;
  }
}
/* ========== Global Creative Theme ========== */
:root{
  --abeeZ_bg_main: #05FBFF;
  --abeeZ_card_bg: #849BF5;
  --abeeZ_hover: #EB0F30;
  --abeeZ_btn_bg: #DCD7D6;
  --abeeZ_nav_bg: #3EC035;
  --abeeZ_text_dark: #17324d;
  --abeeZ_text_light: #ffffff;
  --abeeZ_shadow: 0 16px 40px rgba(21, 54, 96, 0.14);
}

body{
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.55), transparent 20%),
    radial-gradient(circle at 90% 0%, rgba(132,155,245,.28), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(235,15,48,.10), transparent 24%),
    linear-gradient(135deg, #05FBFF 0%, #74e6ff 45%, #d7f7ff 100%);
  color: var(--abeeZ_text_dark);
}

.abeeZ_main{
  width: 100%;
  overflow: hidden;
}

.abeeZ_container{
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

.abeeZ_section{
  padding: 72px 0;
}

.abeeZ_sectionHeading{
  margin-bottom: 28px;
}

.abeeZ_sectionEyebrow{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #1f4065;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(26, 57, 103, .10);
  margin-bottom: 14px;
}

.abeeZ_sectionTitle{
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  color: #112b47;
}

.abeeZ_sectionText{
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.9;
  color: #274a70;
}

.abeeZ_dashboardCard{
  background: rgba(132, 155, 245, .92);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 26px;
  box-shadow: var(--abeeZ_shadow);
  transition: all .35s ease;
  overflow: hidden;
}

.abeeZ_dashboardCard:hover{
  border-color: var(--abeeZ_hover);
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(235, 15, 48, .14);
}

.abeeZ_masonryGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.abeeZ_featureGrid{
  display: grid;
  gap: 22px;
}

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

.abeeZ_btnPrimary,
.abeeZ_btnSecondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all .3s ease;
}

.abeeZ_btnPrimary{
  background: linear-gradient(135deg, #DCD7D6 0%, #ffffff 100%);
  color: #17324d;
  box-shadow: 0 12px 26px rgba(26, 58, 101, .12);
}

.abeeZ_btnPrimary:hover{
  color: #EB0F30;
  transform: translateY(-2px);
}

.abeeZ_btnSecondary{
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.55);
  color: #17324d;
}

.abeeZ_btnSecondary:hover{
  border-color: #EB0F30;
  color: #EB0F30;
}

/* ========== Banner ========== */
.abeeZ_homeBanner{
  padding: 60px 0 54px;
}

.abeeZ_homeBannerGrid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.abeeZ_homeBannerContent{
  padding: 28px 0;
}

.abeeZ_badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  color: #183656;
  box-shadow: 0 8px 18px rgba(18, 48, 93, .10);
}

.abeeZ_homeTitle{
  margin: 18px 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  color: #0f2b48;
}

.abeeZ_homeDesc{
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.9;
  color: #20466c;
}

.abeeZ_homeBannerBtns{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.abeeZ_homeBannerMeta{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.abeeZ_homeBannerMeta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #1d4166;
}

.abeeZ_homeBannerVisual{
  position: relative;
  min-height: 460px;
}

.abeeZ_homeBannerCard{
  height: 100%;
  min-height: 460px;
  background: rgba(132,155,245,.78);
  border: 2px solid transparent;
  border-radius: 32px;
  box-shadow: var(--abeeZ_shadow);
  overflow: hidden;
}

.abeeZ_homeBannerCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abeeZ_floatCard{
  animation: abeeZ_floatY 4s ease-in-out infinite;
}

@keyframes abeeZ_floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.abeeZ_homeMiniStat{
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(19, 52, 94, .14);
  color: #183554;
}

.abeeZ_homeMiniStat strong{
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.abeeZ_homeMiniStat small{
  font-size: 13px;
  font-weight: 700;
}

.abeeZ_homeMiniStatA{
  left: -12px;
  bottom: 26px;
}

.abeeZ_homeMiniStatB{
  right: -10px;
  top: 28px;
}

/* ========== About ========== */
.abeeZ_homeAboutGrid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.abeeZ_homeAboutImageWrap{
  padding: 14px;
}

.abeeZ_homeAboutImageWrap img{
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.abeeZ_aboutTags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.abeeZ_aboutTags span{
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: #1b3c60;
  font-size: 13px;
  font-weight: 800;
}

/* ========== Stats ========== */
.abeeZ_statCard{
  padding: 28px;
  text-align: center;
}

.abeeZ_statCard i{
  font-size: 28px;
  margin-bottom: 16px;
}

.abeeZ_statCard strong{
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 14px;
}

.abeeZ_statCard h3{
  margin: 0 0 10px;
  font-size: 20px;
}

.abeeZ_statCard p{
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.85;
}

/* ========== Features ========== */
.abeeZ_featureCard{
  padding: 28px;
}

.abeeZ_featureCard i{
  font-size: 28px;
  margin-bottom: 18px;
}

.abeeZ_featureCard h3{
  margin: 0 0 12px;
  font-size: 22px;
}

.abeeZ_featureCard p{
  margin: 0;
  color: rgba(255,255,255,.94);
  line-height: 1.85;
}

/* ========== Services ========== */
.abeeZ_serviceCard img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.abeeZ_serviceCard h3{
  margin: 18px 20px 10px;
  font-size: 22px;
}

.abeeZ_serviceCard p{
  margin: 0 20px 22px;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

/* ========== QA Slider ========== */
.abeeZ_qaSlider{
  position: relative;
}

.abeeZ_qaTrack{
  position: relative;
  min-height: 230px;
}

.abeeZ_qaCard{
  display: none;
  padding: 28px;
  text-align: left;
}

.abeeZ_qaCard.active{
  display: block;
}

.abeeZ_qaCard i{
  font-size: 34px;
  margin-bottom: 16px;
}

.abeeZ_qaCard h3{
  margin: 0 0 12px;
  font-size: 24px;
}

.abeeZ_qaCard p{
  margin: 0;
  line-height: 1.9;
  color: rgba(255,255,255,.94);
}

.abeeZ_sliderDots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.abeeZ_sliderDots button{
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(23, 50, 77, .22);
  cursor: pointer;
}

.abeeZ_sliderDots button.active{
  background: #EB0F30;
}

/* ========== FAQ ========== */
.abeeZ_faqGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.abeeZ_faqItem{
  padding: 22px 24px;
}

.abeeZ_faqItem summary{
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.abeeZ_faqItem summary::-webkit-details-marker{
  display: none;
}

.abeeZ_faqItem p{
  margin: 16px 0 0;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

/* ========== News ========== */
.abeeZ_newsCard{
  height: 100%;
}

.abeeZ_newsThumb img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.abeeZ_newsContent{
  padding: 18px 20px 22px;
}

.abeeZ_newsContent h3{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.45;
}

.abeeZ_newsContent h3 a{
  color: #fff;
  text-decoration: none;
}

.abeeZ_newsContent p{
  margin: 0 0 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

.abeeZ_newsContent time{
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}

/* ========== Contact ========== */
.abeeZ_homeContactGrid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.abeeZ_contactInfoList{
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.abeeZ_contactInfoItem{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  color: #17324d;
  box-shadow: 0 10px 22px rgba(24, 56, 96, .10);
}

.abeeZ_contactInfoItem i{
  color: #EB0F30;
}

.abeeZ_contactInfoItem em{
  font-style: normal;
  font-weight: 700;
}

.abeeZ_homeContactFormWrap{
  padding: 26px;
}

.abeeZ_homeContactForm{
  display: grid;
  gap: 16px;
}

.abeeZ_formRow{
  display: grid;
  gap: 8px;
}

.abeeZ_formRow label{
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.abeeZ_formRow input,
.abeeZ_formRow textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  outline: none;
  border-radius: 16px;
  background: rgba(255,255,255,.90);
  color: #17324d;
  padding: 14px 16px;
  font-size: 15px;
}

.abeeZ_formRow input:focus,
.abeeZ_formRow textarea:focus{
  border-color: #EB0F30;
}

.abeeZ_formSubmit{
  border: none;
  cursor: pointer;
}

/* ========== Footer ========== */
.abeeZ_footer{
  padding: 34px 0 26px;
}

.abeeZ_footerWrap{
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

.abeeZ_footerTop{
  display: grid;
  grid-template-columns: 1.2fr .9fr 1fr;
  gap: 22px;
}

.abeeZ_footerCard{
  padding: 26px;
}

.abeeZ_footerLogo{
  display: block;
  margin-bottom: 16px;
}

.abeeZ_footerBrandName{
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.abeeZ_footerBrandDesc{
  margin: 0;
  line-height: 1.9;
  color: rgba(255,255,255,.94);
}

.abeeZ_footerTitle{
  margin: 0 0 16px;
  font-size: 22px;
  color: #fff;
}

.abeeZ_footerNavList{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.abeeZ_footerNavList li a{
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-weight: 700;
  transition: color .3s ease;
}

.abeeZ_footerNavList li a:hover{
  color: #ffe5e9;
}

.abeeZ_footerContact{
  display: grid;
  gap: 14px;
}

.abeeZ_footerContactItem{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
}

.abeeZ_footerContactItem i{
  width: 18px;
  text-align: center;
}

.abeeZ_footerContactItem a,
.abeeZ_footerContactItem em{
  color: rgba(255,255,255,.96);
  font-style: normal;
  text-decoration: none;
  font-weight: 700;
}

.abeeZ_footerBottom{
  margin-top: 22px;
  padding: 18px 10px 0;
  border-top: 1px solid rgba(23, 50, 77, .12);
  text-align: center;
}

.abeeZ_footerBottom span,
.abeeZ_footerBottom a{
  color: #24486d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

/* ========== Back Top ========== */
.abeeZ_backTop{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #DCD7D6 0%, #ffffff 100%);
  color: #17324d;
  box-shadow: 0 12px 26px rgba(18, 50, 92, .18);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s ease;
}

.abeeZ_backTop.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.abeeZ_backTop:hover{
  color: #EB0F30;
  transform: translateY(-4px);
}

/* ========== Responsive ========== */
@media (max-width: 1100px){
  .abeeZ_masonryGrid{
    grid-template-columns: repeat(2, 1fr);
  }

  .abeeZ_homeBannerGrid,
  .abeeZ_homeAboutGrid,
  .abeeZ_homeContactGrid,
  .abeeZ_footerTop{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .abeeZ_section{
    padding: 56px 0;
  }

  .abeeZ_featureGridTwo,
  .abeeZ_faqGrid,
  .abeeZ_masonryGrid{
    grid-template-columns: 1fr;
  }

  .abeeZ_homeBannerVisual{
    min-height: auto;
  }

  .abeeZ_homeBannerCard{
    min-height: 320px;
  }

  .abeeZ_homeMiniStatA,
  .abeeZ_homeMiniStatB{
    position: static;
    margin-top: 12px;
    display: inline-block;
  }

  .abeeZ_footerNavList{
    grid-template-columns: 1fr;
  }
}
/* ========== Page Banner Shared ========== */
.abeeZ_pageBanner{
  padding: 58px 0 36px;
}

.abeeZ_pageBannerGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.abeeZ_pageBannerTitle{
  margin: 16px 0;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.1;
  color: #102a46;
}

.abeeZ_pageBannerText{
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #21476e;
}

.abeeZ_pageBannerCard{
  min-height: 340px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Contact Page ========== */
.abeeZ_contactVisualIcons{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.abeeZ_contactVisualIcons span{
  min-height: 120px;
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abeeZ_contactVisualIcons i{
  font-size: 44px;
  color: #fff;
}

.abeeZ_contactQuickGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.abeeZ_contactQuickCard{
  padding: 28px 22px;
}

.abeeZ_contactQuickCard i{
  font-size: 30px;
  margin-bottom: 16px;
}

.abeeZ_contactQuickCard small{
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
}

.abeeZ_contactQuickCard a,
.abeeZ_contactQuickCard span{
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.abeeZ_contactQuickCard p{
  margin: 14px 0 0;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

.abeeZ_contactAccordion{
  display: grid;
  gap: 18px;
}

.abeeZ_contactAccordionItem{
  overflow: hidden;
}

.abeeZ_contactAccordionTitle{
  margin: 0;
}

.abeeZ_contactAccordionBtn{
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 19px;
  font-weight: 900;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
}

.abeeZ_contactAccordionBtn i{
  color: #fff;
}

.abeeZ_contactAccordionPanel{
  display: none;
  padding: 0 24px 22px;
}

.abeeZ_contactAccordionItem.active .abeeZ_contactAccordionPanel{
  display: block;
}

.abeeZ_contactAccordionInner p{
  margin: 0 0 14px;
  line-height: 1.9;
  color: rgba(255,255,255,.94);
}

.abeeZ_contactAccordionInner ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.abeeZ_contactAccordionInner ul li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.95);
  font-weight: 700;
}

.abeeZ_contactFormGrid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.abeeZ_contactSideInfo{
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.abeeZ_contactFormCard{
  padding: 26px;
}

.abeeZ_contactForm{
  display: grid;
  gap: 16px;
}

/* ========== App Page ========== */
.abeeZ_appBannerCard{
  padding: 18px;
}

.abeeZ_appPhoneMockup{
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255,255,255,.15);
}

.abeeZ_appPhoneMockup img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  border: 6px solid rgba(255,255,255,.35);
}

.abeeZ_appIcon{
  position: absolute;
  top: -8px;
  right: -8px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DCD7D6 0%, #fff 100%);
  color: #17324d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(20, 52, 92, .20);
}

.abeeZ_appIcon i{
  font-size: 30px;
}

.abeeZ_appIntroGrid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.abeeZ_appIntroCard{
  padding: 28px;
}

.abeeZ_appStableBadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.abeeZ_appIntroStats{
  display: grid;
  gap: 22px;
}

.abeeZ_appStatCard{
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abeeZ_appStatCard h3{
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
}

.abeeZ_appStatCard small{
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
}

.abeeZ_appBenefitsGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.abeeZ_appBenefitList{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-top: 22px;
}

.abeeZ_appBenefitList span{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  color: #17324d;
  font-size: 14px;
  font-weight: 800;
}

.abeeZ_appBenefitList i{
  color: #EB0F30;
}

.abeeZ_appDownloadBtns{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.abeeZ_appBenefitsVisual{
  padding: 14px;
}

.abeeZ_appBenefitsVisual img{
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.abeeZ_appExpCard{
  padding: 28px;
}

.abeeZ_appExpCard h3{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 22px;
}

.abeeZ_appExpCard h3 span{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.abeeZ_appExpCard p{
  margin: 0;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

.abeeZ_compareTableWrap{
  padding: 18px;
  overflow-x: auto;
}

.abeeZ_compareTable{
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  min-width: 760px;
}

.abeeZ_compareTable > div{
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
}

.abeeZ_compareTable > div:nth-child(3n + 1),
.abeeZ_compareTable > div:nth-child(3n + 2),
.abeeZ_compareTable > div:nth-child(3n + 3){
  background: transparent;
}

.abeeZ_compareTable > div:nth-child(-n+3){
  font-weight: 900;
  background: rgba(255,255,255,.12);
}

.abeeZ_timelineGroup{
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.abeeZ_timelineYear{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #17324d;
  font-size: 15px;
  font-weight: 900;
}

.abeeZ_timelineItem{
  padding: 24px;
}

.abeeZ_timelineItem h3{
  margin: 0 0 8px;
  font-size: 24px;
}

.abeeZ_timelineItem p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  line-height: 1.8;
}

.abeeZ_timelineItem ul{
  margin: 0;
  padding-left: 18px;
}

.abeeZ_timelineItem ul li{
  margin: 8px 0;
  color: rgba(255,255,255,.94);
  line-height: 1.75;
}

.abeeZ_appFaqTags{
  margin: 10px 0 0;
  color: #23486f;
  font-weight: 700;
}

.abeeZ_appInstallGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.abeeZ_installCard{
  padding: 26px;
}

.abeeZ_installCard h3{
  margin: 0 0 18px;
  font-size: 28px;
  color: #fff;
}

.abeeZ_installSteps{
  display: grid;
  gap: 16px;
}

.abeeZ_installSteps > div{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
}

.abeeZ_installSteps span{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: #17324d;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abeeZ_installSteps h4{
  margin: 2px 0 6px;
  color: #fff;
  font-size: 18px;
}

.abeeZ_installSteps p{
  grid-column: 2 / 3;
  margin: 0;
  color: rgba(255,255,255,.92);
  line-height: 1.8;
}

.abeeZ_appTrustLead{
  display: inline-block;
  margin: 0 0 10px;
  color: #23486f;
  font-size: 14px;
  font-weight: 800;
}

.abeeZ_appTrustCard{
  padding: 26px;
}

.abeeZ_appTrustCard span{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.abeeZ_appTrustCard span i{
  font-size: 24px;
  color: #fff;
}

.abeeZ_appTrustCard h3{
  margin: 0 0 12px;
  font-size: 22px;
}

.abeeZ_appTrustCard p{
  margin: 0;
  line-height: 1.85;
  color: rgba(255,255,255,.94);
}

.abeeZ_appTrustBottom{
  margin: 22px 0 0;
  color: #23486f;
  font-weight: 700;
}

.abeeZ_appJoinGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.abeeZ_appJoinCard,
.abeeZ_appReadyCard{
  padding: 28px;
}

.abeeZ_appInviteText{
  margin: 18px 0 10px;
  color: rgba(255,255,255,.92);
}

.abeeZ_appInviteCode{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  color: #17324d;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.abeeZ_appReadyBadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.abeeZ_appReadyBtns{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

/* ========== Responsive Extend ========== */
@media (max-width: 1100px){
  .abeeZ_pageBannerGrid,
  .abeeZ_contactFormGrid,
  .abeeZ_appIntroGrid,
  .abeeZ_appBenefitsGrid,
  .abeeZ_appJoinGrid{
    grid-template-columns: 1fr;
  }

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

  .abeeZ_appInstallGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .abeeZ_contactQuickGrid,
  .abeeZ_appBenefitList,
  .abeeZ_appJoinGrid{
    grid-template-columns: 1fr;
  }

  .abeeZ_pageBannerCard{
    min-height: 260px;
  }

  .abeeZ_appPhoneMockup img{
    height: 420px;
  }
}
/* ========== Breadcrumb ========== */
.abeeZ_breadcrumbSection{
  padding: 0 0 10px;
}

.abeeZ_breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 24px rgba(24, 58, 96, .10);
}

.abeeZ_breadcrumb a{
  color: #17324d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.abeeZ_breadcrumb small{
  color: #557291;
  font-size: 12px;
}

/* ========== Shared Sidebar Layout ========== */
.abeeZ_sidebarLayout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.abeeZ_sidebarCard{
  padding: 22px;
  margin-bottom: 22px;
}

.abeeZ_sidebarCardTitle{
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.abeeZ_sidebarSearchForm{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
}

.abeeZ_sidebarSearchField{
  position: relative;
  flex: 1;
}

.abeeZ_sidebarSearchField input{
  width: 100%;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: #17324d;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.abeeZ_sidebarSearchField label{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.abeeZ_sidebarSearchForm button{
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #DCD7D6 0%, #ffffff 100%);
  color: #17324d;
  cursor: pointer;
  transition: all .3s ease;
}

.abeeZ_sidebarSearchForm button:hover{
  color: #EB0F30;
  transform: translateY(-2px);
}

.abeeZ_sidebarHotItem{
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.abeeZ_sidebarHotItem:first-of-type{
  padding-top: 0;
  border-top: none;
}

.abeeZ_sidebarHotThumb img{
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.abeeZ_sidebarHotTitle{
  margin: 0 0 8px;
  line-height: 1.55;
}

.abeeZ_sidebarHotTitle a{
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
}

.abeeZ_sidebarHotDesc{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  font-size: 13px;
}

.abeeZ_sidebarHotText time{
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 700;
}

/* ========== List Page ========== */
.abeeZ_listBannerCard,
.abeeZ_showBannerCard{
  min-height: 320px;
  padding: 20px;
}

.abeeZ_listBannerIconWrap,
.abeeZ_showBannerVisualInner{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.abeeZ_listBannerIconWrap span,
.abeeZ_showBannerVisualInner span{
  min-height: 160px;
  border-radius: 24px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abeeZ_listBannerIconWrap span i,
.abeeZ_showBannerVisualInner span i{
  font-size: 42px;
  color: #fff;
}

.abeeZ_listGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.abeeZ_listArticle{
  height: 100%;
}

.abeeZ_listThumb img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.abeeZ_listArticleBody{
  padding: 18px 20px 22px;
}

.abeeZ_listArticleTitle{
  margin: 0 0 12px;
  line-height: 1.55;
}

.abeeZ_listArticleTitle a{
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
}

.abeeZ_listArticleDesc{
  margin: 0 0 14px;
  color: rgba(255,255,255,.94);
  line-height: 1.85;
}

.abeeZ_listArticleMeta time{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 700;
}

/* ========== Show Page ========== */
.abeeZ_showLayout{
  grid-template-columns: minmax(0, 1fr) 320px;
}

.abeeZ_showArticle{
  padding: 28px;
}

.abeeZ_showArticleTitle{
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.3;
}

.abeeZ_showMeta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.abeeZ_showMeta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  font-size: 13px;
  font-weight: 800;
}

.abeeZ_showArticleBody{
  color: rgba(255,255,255,.96);
  font-size: 16px;
  line-height: 1.95;
}

.abeeZ_showArticleBody p{
  color: rgba(255,255,255,.96);
  line-height: 1.95;
}

.abeeZ_showArticleBody img{
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.abeeZ_showArticleBody h1,
.abeeZ_showArticleBody h2,
.abeeZ_showArticleBody h3,
.abeeZ_showArticleBody h4,
.abeeZ_showArticleBody h5,
.abeeZ_showArticleBody h6{
  color: #fff;
  line-height: 1.45;
}

.abeeZ_showPager{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.abeeZ_showPagerLink{
  display: block;
  min-height: 110px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  text-decoration: none;
  transition: all .3s ease;
}

.abeeZ_showPagerLink:hover{
  background: rgba(255,255,255,.18);
}

.abeeZ_showPagerLink span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.abeeZ_showPagerLink p{
  margin: 12px 0 0;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
}

.abeeZ_showShare{
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.abeeZ_showShareTitle{
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.abeeZ_showShareDesc{
  margin: 0 0 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.8;
}

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

.abeeZ_shareBtn{
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}

.abeeZ_shareBtn:hover{
  background: #fff;
  color: #EB0F30;
  transform: translateY(-2px);
}

.abeeZ_sectionBlock{
  margin-top: 24px;
}

.abeeZ_showRecommendCard{
  padding: 24px;
}

.abeeZ_showBlockTitle{
  margin: 0 0 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.abeeZ_showRecommendList{
  display: grid;
  gap: 14px;
}

.abeeZ_showRecommendItem{
  display: grid;
  grid-template-columns: 52px 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.abeeZ_showRecommendItem:first-child{
  padding-top: 0;
  border-top: none;
}

.abeeZ_showRecommendIndex{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abeeZ_showRecommendThumb img{
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.abeeZ_showRecommendTitle{
  margin: 0 0 8px;
  line-height: 1.6;
}

.abeeZ_showRecommendTitle a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
}

.abeeZ_showRecommendText small{
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 700;
}

/* ========== Responsive for list/show ========== */
@media (max-width: 1100px){
  .abeeZ_sidebarLayout,
  .abeeZ_showLayout{
    grid-template-columns: 1fr;
  }

  .abeeZ_listGrid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .abeeZ_showPager{
    grid-template-columns: 1fr;
  }

  .abeeZ_showRecommendItem{
    grid-template-columns: 46px 88px 1fr;
  }

  .abeeZ_listBannerIconWrap,
  .abeeZ_showBannerVisualInner{
    grid-template-columns: 1fr;
  }

  .abeeZ_listBannerIconWrap span,
  .abeeZ_showBannerVisualInner span{
    min-height: 92px;
  }
}