/*==========================================================
HEADER
==========================================================*/

.ap-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.35s ease;
  padding: 18px 0;
}

.ap-header.scrolled {
  padding: 10px 0;
}

.ap-navbar {
  position: relative;
}

.ap-navbar-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 26px;

  padding: 18px 34px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;

  transition: 0.35s;
}

.ap-header.scrolled .ap-navbar-container {
  border-radius: 18px;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/*==========================================================
LOGO
==========================================================*/

.ap-logo {
  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

  flex-shrink: 0;
}

.ap-logo img {
  width: 54px;

  height: 54px;

  object-fit: contain;
}

.ap-logo span {
  font-size: 40px;

  font-weight: 800;

  color: #18233a;

  line-height: 1;

  letter-spacing: -0.5px;
}

/*==========================================================
DESKTOP MENU
==========================================================*/

.ap-menu {
  display: flex;

  align-items: center;

  gap: 42px;

  list-style: none;

  margin: 0;

  padding: 0;
}

.ap-menu li {
  list-style: none;
}

.ap-menu a {
  position: relative;

  display: block;

  text-decoration: none;

  color: #243046;

  font-weight: 700;

  font-size: 16px;

  transition: 0.3s;
}

.ap-menu a:hover {
  color: var(--primary);
}

.ap-menu a.active {
  color: var(--primary);
}

.ap-menu a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transition: 0.3s;
}

.ap-menu a:hover::after {
  width: 100%;
}

.ap-menu a.active::after {
  width: 100%;
}

/*==========================================================
RIGHT BUTTON
==========================================================*/

.ap-navbar-action {
  display: flex;

  align-items: center;

  gap: 14px;
}

/*==========================================================
PRIMARY BUTTON
==========================================================*/

.ap-btn-primary {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-width: 200px;

  height: 58px;

  border-radius: 999px;

  text-decoration: none;

  color: #fff;

  font-size: 16px;

  font-weight: 700;

  background: linear-gradient(135deg, #17c79d, #38d67c);

  box-shadow: 0 12px 30px rgba(24, 196, 163, 0.25);

  transition: 0.35s;
}

.ap-btn-primary:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 20px 40px rgba(24, 196, 163, 0.35);
}

/*==========================================================
OUTLINE BUTTON
==========================================================*/

.ap-btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 180px;

  height: 58px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  color: var(--primary);

  background: #fff;

  border: 2px solid rgba(24, 196, 163, 0.22);

  transition: 0.35s;
}

.ap-btn-outline:hover {
  color: #fff;

  background: var(--primary);

  border-color: var(--primary);

  transform: translateY(-3px);
}

/*==========================================================
HAMBURGER
==========================================================*/

.ap-mobile-toggle {
  display: none;

  width: 56px;

  height: 56px;

  border: none;

  outline: none;

  cursor: pointer;

  border-radius: 18px;

  background: #fff;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);

  align-items: center;

  justify-content: center;

  flex-direction: column;

  gap: 6px;

  transition: 0.35s;
}

.ap-mobile-toggle span {
  width: 26px;

  height: 3px;

  border-radius: 30px;

  background: #202d44;

  transition: 0.35s;
}

.ap-mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.ap-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ap-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/*==========================================================
STICKY EFFECT
==========================================================*/

.ap-header.scrolled {
  background: transparent;
}

.ap-header.scrolled .ap-navbar-container {
  background: rgba(255, 255, 255, 0.95);
}

/*==========================================================
MOBILE
==========================================================*/

@media (max-width: 991px) {
  .ap-menu {
    display: none;
  }

  .ap-navbar-action {
    display: none;
  }

  .ap-mobile-toggle {
    display: flex;
  }

  .ap-navbar-container {
    padding: 16px 20px;
  }

  .ap-logo span {
    font-size: 32px;
  }

  .ap-logo img {
    width: 48px;

    height: 48px;
  }
}

/*==========================================================
MOBILE OVERLAY
==========================================================*/

.ap-mobile-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  backdrop-filter: blur(4px);

  -webkit-backdrop-filter: blur(4px);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 998;
}

.ap-mobile-overlay.active {
  opacity: 1;

  visibility: visible;
}

/*==========================================================
MOBILE MENU
==========================================================*/

.ap-mobile-menu {
  position: fixed;

  top: 0;

  right: -100%;

  width: 360px;

  max-width: 85vw;

  height: 100vh;

  background: #ffffff;

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  box-shadow: -25px 0 60px rgba(0, 0, 0, 0.15);

  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);

  z-index: 9999;

  overflow-y: auto;
}

.ap-mobile-menu.active {
  right: 0;
}

/*==========================================================
HEADER
==========================================================*/

.ap-mobile-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 26px;

  border-bottom: 1px solid #eef2f7;
}

.ap-mobile-header img {
  width: 54px;

  height: 54px;

  object-fit: contain;
}

.ap-mobile-header button {
  width: 46px;

  height: 46px;

  border: none;

  background: #f5f7fb;

  border-radius: 14px;

  cursor: pointer;

  transition: 0.3s;
}

.ap-mobile-header button:hover {
  background: var(--primary);

  color: #fff;
}

/*==========================================================
MENU
==========================================================*/

.ap-mobile-menu ul {
  list-style: none;

  margin: 0;

  padding: 24px;
}

.ap-mobile-menu li {
  margin-bottom: 8px;
}

.ap-mobile-menu a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  text-decoration: none;

  color: #243046;

  font-size: 17px;

  font-weight: 700;

  padding: 16px 18px;

  border-radius: 16px;

  transition: 0.3s;
}

.ap-mobile-menu a:hover {
  background: #f5fffd;

  color: var(--primary);

  transform: translateX(6px);
}

/*==========================================================
BUTTON AREA
==========================================================*/

.ap-mobile-buttons {
  margin-top: auto;

  padding: 24px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  border-top: 1px solid #eef2f7;
}

.ap-mobile-buttons .ap-btn-primary,
.ap-mobile-buttons .ap-btn-outline {
  width: 100%;
}

/*==========================================================
ANIMATION
==========================================================*/

.ap-mobile-menu ul li {
  opacity: 0;

  transform: translateX(30px);

  transition: 0.35s;
}

.ap-mobile-menu.active ul li {
  opacity: 1;

  transform: none;
}

.ap-mobile-menu.active ul li:nth-child(1) {
  transition-delay: 0.05s;
}

.ap-mobile-menu.active ul li:nth-child(2) {
  transition-delay: 0.1s;
}

.ap-mobile-menu.active ul li:nth-child(3) {
  transition-delay: 0.15s;
}

.ap-mobile-menu.active ul li:nth-child(4) {
  transition-delay: 0.2s;
}

.ap-mobile-menu.active ul li:nth-child(5) {
  transition-delay: 0.25s;
}

.ap-mobile-menu.active ul li:nth-child(6) {
  transition-delay: 0.3s;
}

.ap-mobile-menu.active ul li:nth-child(7) {
  transition-delay: 0.35s;
}

/*==========================================================
SCROLLBAR
==========================================================*/

.ap-mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.ap-mobile-menu::-webkit-scrollbar-thumb {
  background: #d7dde8;

  border-radius: 20px;
}

.ap-mobile-menu::-webkit-scrollbar-track {
  background: transparent;
}

/*==========================================================
MOBILE ONLY
==========================================================*/

@media (min-width: 992px) {
  .ap-mobile-menu {
    display: none;
  }

  .ap-mobile-overlay {
    display: none;
  }
}

/*==========================================================
SMALL DEVICE
==========================================================*/

@media (max-width: 576px) {
  .ap-mobile-menu {
    width: 85%;

    max-width: 360px;
  }

  .ap-mobile-header {
    padding: 22px;
  }

  .ap-mobile-menu ul {
    padding: 20px;
  }

  .ap-mobile-buttons {
    padding: 20px;
  }

  .ap-mobile-menu a {
    font-size: 16px;

    padding: 15px 16px;
  }
}

/*==========================================================
HERO
==========================================================*/

.ap-hero {
  position: relative;

  overflow: hidden;

  padding-top: 125px;

  padding-bottom: 70px;

  background:
    radial-gradient(
      circle at top right,
      rgba(24, 196, 163, 0.1),
      transparent 42%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(255, 190, 0, 0.08),
      transparent 42%
    ),
    #ffffff;
}

.ap-hero .container {
  position: relative;

  z-index: 2;
}

.ap-hero .row {
  align-items: center;
}

/*==========================================================
LEFT
==========================================================*/

.ap-hero-content {
  max-width: 650px;

  position: relative;

  z-index: 3;
}

/*==========================================================
BADGE
==========================================================*/

.ap-hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(24, 196, 163, 0.08);

  border: 1px solid rgba(24, 196, 163, 0.12);

  color: var(--primary);

  font-weight: 700;

  font-size: 15px;

  margin-bottom: 30px;
}

.ap-hero-badge i {
  font-size: 18px;
}

/*==========================================================
TITLE
==========================================================*/

.ap-hero-title {
  font-size: 58px;

  font-weight: 800;

  color: #18233a;

  line-height: 1.08;

  letter-spacing: -1.8px;

  margin-bottom: 24px;
}

.ap-hero-title span {
  display: block;

  background: linear-gradient(135deg, #18c4a3, #38d67c);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/*==========================================================
DESCRIPTION
==========================================================*/

.ap-hero-desc {
  font-size: 16px;

  line-height: 1.65;

  color: #64748b;

  margin-bottom: 42px;
}

/*==========================================================
BUTTON
==========================================================*/

.ap-hero-buttons {
  display: flex;

  gap: 18px;

  margin-bottom: 42px;
}

.ap-hero-buttons .ap-btn-primary {
  min-width: 230px;
}

.ap-hero-buttons .ap-btn-outline {
  min-width: 190px;
}

/*==========================================================
RATING
==========================================================*/

.ap-hero-rating {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 42px;
}

.ap-stars {
  display: flex;

  gap: 4px;

  color: #ffc107;

  font-size: 18px;
}

.ap-hero-rating strong {
  display: block;

  font-size: 26px;

  color: #18233a;

  line-height: 1;
}

.ap-hero-rating span {
  color: #64748b;

  font-size: 15px;
}

/*==========================================================
STATISTIC
==========================================================*/

.ap-hero-stats {
  display: flex;
  margin-top: 30px;

  gap: 18px;

  flex-wrap: wrap;
}

.ap-stat {
  flex: 1;

  min-width: 180px;

  padding: 22px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.55);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.ap-stat:hover {
  transform: translateY(-8px);

  box-shadow: 0 30px 60px rgba(24, 196, 163, 0.15);
}

.ap-stat-icon {
  width: 60px;

  height: 60px;

  border-radius: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 18px;

  background: rgba(24, 196, 163, 0.1);

  color: var(--primary);

  font-size: 24px;
}

.ap-stat h3 {
  font-size: 34px;

  font-weight: 800;

  color: var(--primary);

  margin-bottom: 8px;
}

.ap-stat p {
  margin: 0;

  color: #64748b;

  font-size: 15px;
}

/*==========================================================
BACKGROUND GLOW
==========================================================*/

.ap-hero::before {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  border-radius: 50%;

  right: -220px;

  top: -220px;

  background: rgba(24, 196, 163, 0.08);

  filter: blur(80px);
}

.ap-hero::after {
  content: "";

  position: absolute;

  width: 480px;

  height: 480px;

  left: -180px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(255, 190, 0, 0.08);

  filter: blur(80px);
}

/*==========================================================
FLOATING ANIMATION
==========================================================*/

.ap-stat {
  animation: statFloat 5s ease-in-out infinite;
}

.ap-stat:nth-child(2) {
  animation-delay: 0.3s;
}

.ap-stat:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes statFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================================================
HERO RIGHT
PHONE MOCKUP
==========================================================*/

.ap-hero-visual {
  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 760px;

  z-index: 2;
}

/*==========================================================
PHONE GLOW
==========================================================*/

.ap-phone-glow {
  position: absolute;

  width: 520px;

  height: 520px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(24, 196, 163, 0.28) 0%,

    rgba(24, 196, 163, 0.14) 35%,

    transparent 75%
  );

  filter: blur(40px);

  animation: phoneGlow 6s ease-in-out infinite;
}

@keyframes phoneGlow {
  0% {
    transform: scale(1);

    opacity: 0.85;
  }

  50% {
    transform: scale(1.08);

    opacity: 1;
  }

  100% {
    transform: scale(1);

    opacity: 0.85;
  }
}

/*==========================================================
PHONE
==========================================================*/

.ap-phone {
  position: relative;
  z-index: 5;
}

.ap-phone-dashboard {
  position: relative;

  width: 330px;

  display: block;

  margin: auto;

  border-radius: 34px;

  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.18));

  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================================================
FLOATING CARD
==========================================================*/

.ap-floating-card {
  position: absolute;
  z-index: 10;

  animation: cardFloat 5s ease-in-out infinite;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.ap-floating-card img {
  display: block;
  width: 100%;

  border-radius: 18px;

  background: transparent;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);

  overflow: hidden;
}

/*==========================================================
DEPOSIT
==========================================================*/

.ap-card-deposit {
  position: absolute;

  left: -70px;

  top: 105px;

  width: 170px;

  animation-delay: 0.4s;
}

/*==========================================================
REWARD
==========================================================*/

.ap-card-reward {
  position: absolute;

  right: -70px;

  top: 55px;

  width: 255px;

  animation-delay: 1s;
}

/*==========================================================
FLOATING
==========================================================*/

@keyframes cardFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/*==========================================================
PHONE HOVER
==========================================================*/

.ap-phone-dashboard:hover {
  transform: translateY(-10px) scale(1.02);
}

/*==========================================================
SHADOW
==========================================================*/

.ap-phone-dashboard::after {
  content: "";

  position: absolute;

  width: 70%;

  height: 30px;

  left: 15%;

  bottom: -35px;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.18);

  filter: blur(18px);
}

/*==========================================================
DECORATION
==========================================================*/

.ap-hero-visual::before {
  content: "";

  position: absolute;

  width: 100px;

  height: 100px;

  border-radius: 50%;

  background: rgba(24, 196, 163, 0.1);

  left: 10%;

  top: 8%;

  filter: blur(10px);
}

.ap-hero-visual::after {
  content: "";

  position: absolute;

  width: 80px;

  height: 80px;

  border-radius: 50%;

  background: rgba(255, 190, 0, 0.12);

  right: 5%;

  bottom: 8%;

  filter: blur(8px);
}

/*==========================================================
IMAGE QUALITY
==========================================================*/

.ap-phone-dashboard,
.ap-card-deposit,
.ap-card-reward {
  user-select: none;

  pointer-events: none;

  -webkit-user-drag: none;
}

/*==========================================================
DESKTOP FINE TUNING
==========================================================*/

@media (min-width: 1400px) {
  .ap-phone-dashboard {
    width: 310px;
  }

  .ap-card-deposit {
    left: -120px;
  }

  .ap-card-reward {
    right: -115px;
  }
}

/*==========================================================
LAPTOP
==========================================================*/

@media (max-width: 1200px) {
  .ap-phone-dashboard {
    width: 310px;
  }

  .ap-card-deposit {
    width: 180px;

    left: -80px;
  }

  .ap-card-reward {
    width: 225px;

    right: -80px;
  }
}

/*==========================================================
TABLET
==========================================================*/

@media (max-width: 991px) {
  .ap-hero-visual {
    margin-top: 15px;

    min-height: auto;
  }

  .ap-phone-dashboard {
    width: 280px;
  }

  .ap-card-deposit {
    width: 165px;

    left: -55px;

    top: 90px;
  }

  .ap-card-reward {
    width: 165px;

    right: -55px;

    bottom: 50px;
  }
}

/*==========================================================
MOBILE
==========================================================*/

@media (max-width: 768px) {
  .ap-phone-dashboard {
    width: 280px;
  }

  .ap-card-deposit {
    width: 135px;

    left: -35px;

    top: 85px;
  }

  .ap-card-reward {
    width: 135px;

    right: -35px;

    bottom: 35px;
  }
}

/*==========================================================
SMALL MOBILE
==========================================================*/

@media (max-width: 576px) {
  .ap-phone-dashboard {
    width: 245px;
  }

  .ap-card-deposit {
    width: 120px;

    left: -22px;
  }

  .ap-card-reward {
    width: 120px;

    right: -22px;
  }
}

/*==========================================================
END HERO
==========================================================*/

/*==================================================
PRODUCT SECTION
==================================================*/

.ap-products {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: #ffffff;
}

/*==================================================
SECTION HEADER
==================================================*/

.ap-section-header {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.ap-section-header .ap-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  margin-bottom: 24px;

  border-radius: 999px;

  background: rgba(37, 211, 102, 0.08);

  color: var(--primary);

  font-weight: 600;
}

.ap-section-header .ap-badge i {
  font-size: 18px;
}

.ap-section-title {
  margin-bottom: 22px;

  font-size: 48px;

  font-weight: 800;

  line-height: 1.2;

  color: var(--dark);
}

.ap-section-title span {
  color: var(--primary);
}

.ap-section-desc {
  max-width: 700px;

  margin: auto;

  font-size: 18px;

  line-height: 1.9;

  color: var(--gray);
}

/*==================================================
GRID
==================================================*/

.ap-product-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

/*==================================================
CARD
==================================================*/

.ap-product-card {
  position: relative;

  overflow: hidden;

  padding: 34px;

  border-radius: 28px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.ap-product-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, #25d366, #1fc7b6);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

.ap-product-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 28px;

  background: radial-gradient(
    circle at top,

    rgba(37, 211, 102, 0.12),
    transparent 70%
  );

  opacity: 0;

  transition: 0.4s;
}

.ap-product-card:hover::after {
  opacity: 1;
}

.ap-product-card:hover {
  transform: translateY(-10px);

  border-color: rgba(37, 211, 102, 0.35);

  box-shadow: 0 35px 70px rgba(37, 211, 102, 0.18);
}

.ap-product-card:hover::before {
  transform: scaleX(1);
}

/*==================================================
ICON
==================================================*/

.ap-product-icon {
  width: 72px;

  height: 72px;

  margin-bottom: 28px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  color: #ffffff;

  background: linear-gradient(135deg, #25d366, #1fc7b6);

  transition: 0.35s;
}

.ap-product-card:hover .ap-product-icon {
  transform: scale(1.12) rotate(-6deg);
}

@keyframes iconBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.1);
  }
}

.ap-product-card:hover .ap-product-icon {
  animation: iconBounce 0.4s ease;
}

/*==================================================
TITLE
==================================================*/

.ap-product-card h3 {
  margin-bottom: 14px;

  font-size: 26px;

  font-weight: 700;

  color: var(--dark);

  transition: 0.3s;
}

.ap-product-card:hover h3 {
  color: var(--primary);
}

/*==================================================
DESCRIPTION
==================================================*/

.ap-product-card p {
  margin-bottom: 28px;

  color: var(--gray);

  line-height: 1.8;
}

/*==================================================
LIST
==================================================*/

.ap-product-card ul {
  padding: 0;

  margin: 0;

  list-style: none;
}

.ap-product-card ul li {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 12px;

  color: var(--dark);

  font-weight: 500;
}

.ap-product-card ul li::before {
  content: "✓";

  display: flex;

  align-items: center;

  justify-content: center;

  width: 22px;

  height: 22px;

  border-radius: 50%;

  background: rgba(37, 211, 102, 0.12);

  color: var(--primary);

  font-size: 13px;

  font-weight: bold;
}

/*==================================================
HIGHLIGHT CARD
==================================================*/

.ap-product-highlight {
  color: #ffffff;

  background: linear-gradient(135deg, #25d366, #1fc7b6);
}

.ap-product-highlight h3,
.ap-product-highlight p {
  color: #ffffff;
}

.ap-product-highlight .ap-product-icon {
  background: rgba(255, 255, 255, 0.18);
}

.ap-product-highlight:hover {
  box-shadow: 0 35px 70px rgba(37, 211, 102, 0.35);
}

.ap-card-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 28px;

  font-weight: 600;

  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.ap-card-link:hover {
  gap: 16px;

  color: #ffffff;
}

/*==================================================
BACKGROUND GLOW
==================================================*/

.ap-products::before {
  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  left: -220px;

  bottom: -220px;

  border-radius: 50%;

  background: rgba(255, 208, 0, 0.12);

  filter: blur(90px);
}

.ap-products::after {
  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  right: -220px;

  top: -220px;

  border-radius: 50%;

  background: rgba(37, 211, 102, 0.08);

  filter: blur(90px);
}

/*==================================================
FEATURE SECTION
==================================================*/

.ap-features {
  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background: linear-gradient(180deg, #ffffff, #f8fcfb);
}

.ap-features::before {
  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  left: -220px;

  top: -180px;

  border-radius: 50%;

  background: rgba(37, 211, 102, 0.08);

  filter: blur(90px);
}

.ap-features::after {
  content: "";

  position: absolute;

  width: 520px;

  height: 520px;

  right: -220px;

  bottom: -180px;

  border-radius: 50%;

  background: rgba(255, 193, 7, 0.1);

  filter: blur(90px);
}

.ap-features .container {
  position: relative;

  z-index: 2;
}

/*==================================================
FEATURE GRID
==================================================*/

.ap-feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

  margin-top: 60px;
}

/*==================================================
FEATURE CARD
==================================================*/

.ap-feature-card {
  position: relative;

  overflow: hidden;

  padding: 34px;

  border-radius: 30px;

  background: #ffffff;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);

  transition: 0.35s ease;
}

.ap-feature-card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 4px;

  background: linear-gradient(90deg, #25d366, #19c7b7);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

/*==================================================
FEATURE GLOW
==================================================*/

.ap-feature-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 30px;

  background: radial-gradient(
    circle at top,

    rgba(37, 211, 102, 0.1),
    transparent 70%
  );

  opacity: 0;

  transition: 0.35s;
}

.ap-feature-card:hover::after {
  opacity: 1;
}

.ap-feature-card:hover {
  transform: translateY(-10px);

  border-color: rgba(37, 211, 102, 0.25);

  box-shadow: 0 30px 70px rgba(37, 211, 102, 0.18);
}

.ap-feature-card:hover::before {
  transform: scaleX(1);
}

/*==================================================
FEATURE ICON
==================================================*/

.ap-feature-icon {
  width: 74px;

  height: 74px;

  margin-bottom: 26px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  color: #ffffff;

  background: linear-gradient(135deg, #25d366, #19c7b7);

  transition: 0.35s;
}

.ap-feature-card:hover .ap-feature-icon {
  transform: scale(1.1) rotate(-8deg);
}

/*==================================================
FEATURE TITLE
==================================================*/

.ap-feature-card h3 {
  margin-bottom: 16px;

  font-size: 24px;

  font-weight: 700;

  color: var(--dark);

  transition: 0.3s;
}

.ap-feature-card:hover h3 {
  color: var(--primary);
}

/*==================================================
FEATURE DESCRIPTION
==================================================*/

.ap-feature-card p {
  margin: 0;

  line-height: 1.8;

  color: var(--gray);
}

/*==================================================
FEATURE COUNTER
==================================================*/

.ap-feature-counter {
  margin-top: 90px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}

.ap-counter-item {
  text-align: center;

  padding: 34px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  transition: 0.35s;
}

.ap-counter-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(37, 211, 102, 0.15);
}

.ap-counter-item h3 {
  margin-bottom: 10px;

  font-size: 40px;

  font-weight: 800;

  color: var(--primary);
}

.ap-counter-item p {
  margin: 0;

  color: var(--gray);
}

/* ===========================================
   LOGO
=========================================== */

.ap-logo {
  display: flex;

  align-items: center;

  flex-shrink: 0;
  gap: 10px;
}

.ap-logo-link {
  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;
}

.ap-logo img {
  width: 58px;

  height: auto;
}

.ap-logo-text {
  display: flex;

  flex-direction: column;

  line-height: 1;
}

.ap-logo-title {
  font-size: 24px;

  font-weight: 700;

  color: #152238;

  letter-spacing: -0.5px;

  transition: 0.3s;
}

.ap-logo-link:hover .ap-logo-title {
  color: var(--primary);
}

.ap-menu {
  display: flex;

  align-items: center;

  gap: 30px;

  list-style: none;

  margin: 0;

  padding: 0;
}

.ap-menu li {
  position: relative;
}

.ap-menu a {
  position: relative;

  text-decoration: none;

  color: var(--text);

  font-size: 15px;

  font-weight: 700;

  transition: 0.3s;
}

.ap-menu a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 3px;

  border-radius: 999px;

  background: linear-gradient(90deg, var(--primary), var(--secondary));

  transition: 0.35s;
}

.ap-menu a:hover {
  color: var(--primary);
}

.ap-menu a:hover::after {
  width: 100%;
}

.ap-navbar-action {
  display: flex;

  align-items: center;

  gap: 14px;
}

.ap-mobile-toggle {
  display: none;

  width: 48px;

  height: 48px;

  border: none;

  background: #fff;

  border-radius: 14px;

  cursor: pointer;

  font-size: 24px;

  box-shadow: var(--shadow-sm);
}

.ap-navbar.scrolled {
  top: 8px;
}

.ap-navbar.scrolled .ap-navbar-container {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: scale(0.985);
}

.ap-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;

  padding: 14px 34px;

  border-radius: 999px;

  color: #fff;
  font-weight: 700;

  background: linear-gradient(90deg, #19c7b7 0%, #2fcf8d 45%, #f4c000 100%);

  background-size: 220% auto;

  transition:
    0.35s ease,
    background-position 0.5s ease,
    box-shadow 0.35s ease;

  box-shadow: 0 14px 28px rgba(25, 199, 183, 0.25);
}

.ap-btn-primary:hover {
  transform: translateY(-4px);

  background-position: right center;

  box-shadow: 0 18px 40px rgba(25, 199, 183, 0.35);
}

.ap-btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.ap-btn-primary::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );

  opacity: 0;

  transition: 0.35s;
}

.ap-btn-primary:hover::after {
  opacity: 1;
}

.ap-nav-link {
  position: relative;

  color: var(--color-dark);

  font-size: 16px;

  font-weight: 600;

  text-decoration: none;

  transition: 0.35s;

  padding: 8px 0;
}

.ap-nav-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.ap-nav-link::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -4px;

  width: 0;

  height: 3px;

  border-radius: 20px;

  background: linear-gradient(90deg, #1fc9b8, #f1c40f);

  transition: 0.35s;
}

.ap-nav-link:hover::after {
  width: 100%;
}

/*--Active Menu --*/
.ap-nav-link.active {
  color: var(--color-primary);
}

.ap-nav-link.active::after {
  width: 100%;
}

/*==================================================
SCROLL REVEAL
==================================================*/

.ap-reveal {
  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ap-reveal.ap-show {
  opacity: 1;

  transform: translateY(0);
}

/* ==========================================================
   CARA KERJA
==========================================================*/

.ap-how {
  position: relative;

  padding: 120px 0;

  overflow: hidden;
}

.ap-how::before {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  left: -180px;

  top: 120px;

  background: rgba(39, 201, 164, 0.08);

  filter: blur(90px);

  border-radius: 50%;
}

.ap-how::after {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  right: -120px;

  bottom: -80px;

  background: rgba(255, 210, 70, 0.1);

  filter: blur(90px);

  border-radius: 50%;
}

.ap-how-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 28px;

  margin-top: 70px;

  position: relative;

  z-index: 2;
}

.ap-how-line {
  position: absolute;

  left: 50%;

  transform: translateX(-50%);

  margin-top: 165px;

  width: 72%;

  height: 4px;

  background: linear-gradient(90deg, #28cfa5, #25b4d9);

  opacity: 0.18;
}

.ap-how-card {
  position: relative;

  background: #fff;

  border-radius: 28px;

  padding: 42px 30px;

  text-align: center;

  border: 1px solid #eef2f6;

  transition: 0.35s;

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.ap-how-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);

  border-color: #27c9a4;
}

.ap-how-number {
  position: absolute;

  top: 18px;

  right: 20px;

  font-size: 14px;

  font-weight: 700;

  color: #d0d5dd;
}

.ap-how-icon {
  width: 90px;

  height: 90px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #28cfa5, #25b4d9);

  color: #fff;

  font-size: 38px;

  transition: 0.35s;
}

.ap-how-card:hover .ap-how-icon {
  transform: rotate(-8deg) scale(1.08);
}

.ap-how-card h4 {
  font-size: 28px;

  font-weight: 700;

  margin-bottom: 16px;
}

.ap-how-card p {
  color: #667085;

  line-height: 1.8;

  margin: 0;
}

/* ==========================================================
   BONUS & REWARD
==========================================================*/

.ap-reward {
  position: relative;

  padding: 120px 0;

  overflow: hidden;
}

.ap-reward::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  left: -180px;

  top: 120px;

  border-radius: 50%;

  background: rgba(40, 207, 165, 0.08);

  filter: blur(90px);
}

.ap-reward-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 32px;

  margin-top: 70px;
}

.ap-reward-card {
  background: #fff;

  border-radius: 32px;

  padding: 45px;

  position: relative;

  overflow: hidden;

  transition: 0.35s;

  border: 1px solid #edf2f7;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.ap-reward-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.1);
}

.ap-reward-card.active {
  border: 2px solid #29caa6;

  transform: translateY(-8px);
}

.ap-reward-icon {
  width: 90px;

  height: 90px;

  border-radius: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #2dd4bf, #25b4d9);

  color: #fff;

  font-size: 38px;

  margin-bottom: 28px;
}

.ap-badge {
  display: inline-block;

  background: #e8faf4;

  color: #27c9a4;

  padding: 7px 18px;

  border-radius: 50px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 16px;
}

.ap-reward-card h3 {
  font-size: 30px;

  font-weight: 700;

  margin-bottom: 18px;
}

.ap-reward-card p {
  color: #667085;

  line-height: 1.8;

  margin: 0;
}

.ap-reward-card::after {
  content: "";

  position: absolute;

  right: -40px;

  bottom: -40px;

  width: 160px;

  height: 160px;

  border-radius: 50%;

  background: rgba(39, 201, 164, 0.08);
}

/* ==========================================================
   TESTIMONIAL
==========================================================*/

.ap-testimonial {
  position: relative;

  padding: 120px 0;

  overflow: hidden;
}

.ap-testimonial::before {
  content: "";

  position: absolute;

  left: -220px;

  top: 100px;

  width: 480px;

  height: 480px;

  border-radius: 50%;

  background: rgba(45, 212, 191, 0.08);

  filter: blur(90px);
}

.ap-testimonial::after {
  content: "";

  position: absolute;

  right: -220px;

  bottom: 0;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: rgba(37, 180, 217, 0.08);

  filter: blur(100px);
}

/*======================
SECTION HEADER
======================*/

.ap-review-summary {
  margin-top: 55px;

  margin-bottom: 70px;

  background: #fff;

  border-radius: 30px;

  padding: 40px;

  display: flex;

  align-items: center;

  gap: 50px;

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  backdrop-filter: blur(16px);
}

.ap-review-score {
  text-align: center;

  min-width: 190px;
}

.ap-review-score h2 {
  font-size: 68px;

  font-weight: 800;

  margin: 0;

  color: var(--primary);
}

.ap-review-score span {
  display: block;

  color: #667085;

  margin-top: 10px;
}

.ap-review-text {
  font-size: 18px;

  color: #555;

  line-height: 1.9;
}

.ap-review-text strong {
  color: var(--dark);
}

/*======================
STARS
======================*/

.ap-stars {
  display: flex;

  gap: 5px;

  justify-content: center;

  margin: 10px 0;
}

.ap-stars i {
  color: #ffc107;

  font-size: 18px;
}

/*======================
GRID
======================*/

.ap-testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 35px;
}

/*======================
CARD
======================*/

.ap-testimonial-card {
  position: relative;

  background: rgba(255, 255, 255, 0.82);

  backdrop-filter: blur(18px);

  border-radius: 28px;

  padding: 38px;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.55);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  overflow: hidden;
}

.ap-testimonial-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(45, 212, 191, 0.06),
    transparent 60%
  );

  opacity: 0;

  transition: 0.35s;
}

.ap-testimonial-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.ap-testimonial-card:hover::before {
  opacity: 1;
}

.ap-testimonial-card.active {
  border: 2px solid var(--primary);

  transform: translateY(-8px);
}

/*======================
USER
======================*/

.ap-user {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 20px;
}

.ap-user img {
  width: 72px;

  height: 72px;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid rgba(45, 212, 191, 0.18);
}

.ap-user h4 {
  margin: 0;

  font-size: 21px;

  font-weight: 700;
}

.ap-user span {
  color: #777;

  font-size: 14px;
}

/*======================
TEXT
======================*/

.ap-testimonial-card p {
  margin-top: 20px;

  margin-bottom: 0;

  color: #667085;

  line-height: 1.9;

  font-size: 16px;
}

/*======================
QUOTE
======================*/

.ap-testimonial-card::after {
  content: "❝";

  position: absolute;

  right: 30px;

  top: 25px;

  font-size: 90px;

  color: rgba(45, 212, 191, 0.08);

  font-weight: 700;
}

/*==========================================================
FAQ
==========================================================*/

.ap-faq {
  position: relative;

  padding: 120px 0;

  background: #fff;

  overflow: hidden;
}

.ap-faq::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  left: -220px;

  top: 120px;

  border-radius: 50%;

  background: rgba(25, 199, 183, 0.06);

  filter: blur(90px);
}

.ap-faq::after {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  right: -180px;

  bottom: -150px;

  border-radius: 50%;

  background: rgba(255, 193, 7, 0.08);

  filter: blur(90px);
}

.ap-faq .container {
  position: relative;

  z-index: 2;
}

/*======================================*/

.ap-faq-accordion {
  max-width: 900px;

  margin: auto;
}

.ap-faq-accordion .accordion-item {
  border: none;

  margin-bottom: 18px;

  border-radius: 20px !important;

  overflow: hidden;

  background: #fff;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.ap-faq-accordion .accordion-item:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 45px rgba(25, 199, 183, 0.12);
}

.ap-faq-accordion .accordion-button {
  background: #fff;

  font-size: 19px;

  font-weight: 700;

  padding: 26px 30px;

  color: #1f2937;

  box-shadow: none;
}

.ap-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.ap-faq-accordion .accordion-button:not(.collapsed) {
  background: #f3fffc;

  color: #19c7b7;
}

.ap-faq-accordion .accordion-button::after {
  transition: 0.35s;
}

.ap-faq-accordion .accordion-body {
  padding: 0 30px 28px;

  font-size: 17px;

  line-height: 1.9;

  color: #64748b;
}

/*=========================================
FAQ TITLE
=========================================*/

.ap-faq .ap-section-title {
  max-width: 760px;

  margin: 0 auto 70px;

  text-align: center;
}

.ap-faq .ap-section-title h2 {
  font-size: 52px;

  font-weight: 800;

  line-height: 1.2;

  color: var(--color-dark);

  margin: 22px 0;
}

.ap-faq .ap-section-title h2 span {
  color: var(--color-primary);
}

.ap-faq .ap-section-title p {
  font-size: 20px;

  line-height: 1.8;

  color: #64748b;

  max-width: 760px;

  margin: auto;
}

@media (max-width: 768px) {
  .ap-faq .ap-section-title h2 {
    font-size: 34px;
  }

  .ap-faq .ap-section-title p {
    font-size: 16px;
  }
}

.ap-faq .ap-section-badge {
  margin: auto;
}

/*=========================================================
CTA
=========================================================*/

.ap-cta {
  padding: 140px 0;

  position: relative;

  overflow: hidden;
}

.ap-cta::before {
  content: "";

  position: absolute;

  width: 700px;

  height: 700px;

  left: -220px;

  bottom: -250px;

  border-radius: 50%;

  background: rgba(25, 199, 183, 0.08);

  filter: blur(120px);
}

.ap-cta::after {
  content: "";

  position: absolute;

  width: 650px;

  height: 650px;

  right: -180px;

  top: -180px;

  border-radius: 50%;

  background: rgba(255, 212, 59, 0.08);

  filter: blur(120px);
}

.ap-cta-box {
  position: relative;

  z-index: 2;

  padding: 90px;

  border-radius: 40px;

  background: linear-gradient(135deg, #19c7b7, #2ed58f);

  overflow: hidden;

  box-shadow: 0 35px 80px rgba(25, 199, 183, 0.25);
}

.ap-cta-box::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  right: -180px;

  top: -180px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
}

.ap-cta-box::after {
  content: "";

  position: absolute;

  width: 350px;

  height: 350px;

  left: -120px;

  bottom: -120px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.ap-cta-badge {
  display: inline-flex;

  gap: 10px;

  align-items: center;

  padding: 10px 22px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.18);

  color: #fff;

  font-weight: 600;

  margin-bottom: 25px;
}

.ap-cta-title {
  font-size: 56px;

  line-height: 1.15;

  font-weight: 800;

  color: #fff;

  margin-bottom: 25px;
}

.ap-cta-title span {
  display: block;
}

.ap-cta-desc {
  font-size: 20px;

  line-height: 1.9;

  color: rgba(255, 255, 255, 0.9);

  max-width: 620px;

  margin-bottom: 35px;
}

.ap-cta-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-bottom: 35px;
}

.ap-cta-buttons .btn {
  border-radius: 50px;

  padding: 16px 36px;

  font-size: 18px;

  font-weight: 700;
}

.ap-cta-buttons .btn-success {
  background: #fff;

  color: #19c7b7;

  border: none;
}

.ap-cta-buttons .btn-success:hover {
  transform: translateY(-4px);
}

.ap-cta-buttons .btn-light {
  background: transparent;

  border: 2px solid rgba(255, 255, 255, 0.4);

  color: #fff;
}

.ap-cta-buttons .btn-light:hover {
  background: #fff;

  color: #19c7b7;
}

.ap-cta-features {
  display: flex;

  gap: 30px;

  flex-wrap: wrap;

  color: #fff;

  font-weight: 600;
}

.ap-cta-features i {
  margin-right: 8px;
}

/*=========================================================
CTA Responsive
=========================================================*/

@media (max-width: 991px) {
  .ap-cta {
    padding: 90px 0;
  }

  .ap-cta-box {
    padding: 50px 30px;

    text-align: center;
  }

  .ap-cta-title {
    font-size: 38px;
  }

  .ap-cta-desc {
    font-size: 18px;

    margin: auto auto 30px;
  }

  .ap-cta-buttons {
    justify-content: center;
  }

  .ap-cta-features {
    justify-content: center;

    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .ap-cta-title {
    font-size: 30px;
  }

  .ap-cta-buttons .btn {
    width: 100%;
  }

  .ap-cta-features {
    flex-direction: column;

    gap: 15px;

    align-items: center;
  }
}

/*=========================================================
FOOTER
=========================================================*/

.ap-footer {
  background: #0f172a;

  color: #fff;

  padding: 60px 0 25px;
}

.ap-footer-logo {
  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

  margin-bottom: 25px;
}

.ap-footer-logo img {
  width: 52px;
}

.ap-footer-logo span {
  color: #fff;

  font-size: 26px;

  font-weight: 800;
}

.ap-footer-desc {
  color: #94a3b8;

  line-height: 1.7;

  margin-bottom: 30px;
}

.ap-footer h5 {
  margin-bottom: 18px;

  font-size: 18px;

  color: #fff;

  font-weight: 700;
}

.ap-footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.ap-footer li {
  margin-bottom: 8px;
}

.ap-footer a {
  color: #94a3b8;

  text-decoration: none;

  transition: 0.3s;
}

.ap-footer a:hover {
  color: #19c7b7;
}

.ap-footer-social {
  display: flex;

  gap: 15px;
}

.ap-footer-social a {
  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #1e293b;

  color: #fff;

  font-size: 20px;

  transition: 0.3s;
}

.ap-footer-social a:hover {
  background: #19c7b7;

  transform: translateY(-5px);
}

.ap-play-btn {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 15px 20px;

  border-radius: 18px;

  background: #19c7b7;

  color: #fff !important;

  font-weight: 700;

  margin-bottom: 25px;
}

.ap-play-btn:hover {
  background: #2ed58f;
}

.ap-qr-box {
  width: 100px;

  height: 100px;

  border-radius: 20px;

  background: #fff;

  color: #0f172a;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;
}

.ap-footer hr {
  border-color: rgba(255, 255, 255, 0.08);

  margin: 60px 0 30px;
}

.ap-footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  color: #94a3b8;
}

.ap-footer-bottom a {
  margin-left: 20px;
}

/*==================================================
FLOATING SOCIAL
==================================================*/

.ap-floating-social {
  position: fixed;

  left: 25px;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  flex-direction: column;

  gap: 14px;

  z-index: 999;
}

.ap-social {
  width: 58px;

  height: 58px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  color: #fff;

  font-size: 24px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

  transition: 0.3s;
}

.ap-social:hover {
  transform: translateX(6px);

  color: #fff;
}

.ap-social.wa {
  background: #25d366;
}

.ap-social.telegram {
  background: #27a5e7;
}

.ap-social.youtube {
  background: #ff0000;
}

.ap-social.instagram {
  background: #e4405f;
}

.ap-mobile-menu {
  display: none;
}

.ap-mobile-menu.active {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}
