:root {
  --primary: #188C4F;
  --primary-soft: #E3F6EC;
  --navy: #0158A8;
  --bg-light: #F3F6FB;
  --bg-hero: #E5F5FF;
  --text-main: #102A43;
  --text-muted: #718096;
  --border-soft: #E2E8F0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* HERO */

.landing-hero {
  /* background: radial-gradient(circle at 60% 0, #DDEFFF 0, #E5F5FF 32%, #F7FBFF 70%); */
  background-image: url('../images/banners/product-banner.png');  /* Replace with the path to your image */
  background-size: cover;                   /* Ensure the image covers the entire section */
  background-position: center center;       /* Center the image */
  background-repeat: no-repeat;
}

.landing-hero-title {
  //font-size: clamp(30px, 4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
line-height : 1.4
}

.landing-hero-subtitle {
  font-size: 1.125rem;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: #ECFDF3;
  color: #166534;
  font-weight: 500;
}

.landing-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
}

/* HERO RIGHT CARD */

.hero-card-main {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
  max-width: 440px;
  margin-left: auto;
}

.hero-card-name {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-role {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-card-meta {
  text-align: right;
  font-size: 11px;
}

.hero-card-meta strong {
  color: #059669;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60A5FA, #0F766E);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.hero-stats {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
}

.hero-stat-pill {
  flex: 1;
  background: #F1F5F9;
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-pill-badge {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Leaderboard kecil di kanan */

.leaderboard-card {
  position: absolute;
  left: -40px;
  bottom: 14px;
  width: 220px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.22);
  padding: 12px;
  font-size: 11px;
}

.leaderboard-mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4F46E5, #EC4899);
  color: #ffffff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

/* Product cards */

.product-section {
  background: var(--bg-light);
}

.product-card {
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-top: 4px solid var(--navy);
}

/* Testimonial */

.stats-section {
  background: #F7FAFF;
}

.testimonial-card {
  background: #E0F2FE;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Support CTA */

.support-section {
  background: #E5F3FF;
}

.support-inner {
  background: linear-gradient(90deg, #E5F3FF, #DBEAFE);
  border-radius: var(--radius-lg);
}

/* Footer */

.footer-main {
  background: #0F3B7A;
  color: #E5EDF8;
}

/* Floating WA */

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 16px 38px rgba(22, 163, 74, 0.55);
  z-index: 1030;
}

/* Responsive tweaks */

@media (max-width: 991.98px) {
  .leaderboard-card {
    position: static;
    margin-top: 16px;
  }

  .hero-card-main {
    margin: 0 auto;
  }
}

/* NAVBAR */
.navbar-main {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-brand-logo {
    font-size: 24px;
    font-weight: 800;
    color: #0F3B7A !important;
    letter-spacing: -0.02em;
}

.nav-item .nav-link {
    font-weight: 500;
    color: #495057 !important;
    padding: 10px 14px !important;
    transition: 0.2s;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
    color: #0F3B7A !important;
}

.nav-cta-btn {
    background-color: #0F3B7A;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 22px !important;
    transition: 0.2s;
}

.nav-cta-btn:hover {
    background-color: #0D2F65;
    color: #ffffff !important;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.dropdown-item {
    padding: 8px 12px;
    border-radius: 8px;
    color: #444;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #E6F0FF;
    color: #0F3B7A;
}

/* Mobile nav spacing */
@media (max-width: 991px) {
    .nav-item .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* FOOTER */
.footer-main {
    background: linear-gradient(#1e78bf,#186aab);
    color: #E5EDF8;
    padding: 50px 0;
    font-size: 15px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 17px;
}

.footer-link {
    color: #DCE6F4;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-social img {
    height: 32px;
    margin-right: 10px;
    opacity: 0.85;
    transition: 0.2s;
}

.footer-social img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #cdd7ea;
}

/* Footer logos */
.footer-logo {
    height: 46px;
    margin-right: 14px;
    opacity: 0.9;
    transition: 0.2s;
}

.footer-logo:hover {
    opacity: 1;
}

/* Footer contact */
.footer-contact p {
    margin-bottom: 6px;
}

.footer-contact i {
    margin-right: 8px;
    color: #8CD3FF;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-title {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    #chat-icon {
        left: 180px;
    }
    #robot-icon {
        left: 150px;
    }
    #pie-icon {
        right: 160px;
    }
}
.step-container {
    position: sticky;
    padding-top: 50px;
    padding-bottom: 80px;
    top: 40px;
    background: #fff;
    z-index: 2;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #828d99;
}
.step-line.active {
    border-top: 1px solid #1a81c5;
}
.step-text {
    position: absolute;
    color: #828d99;
    margin-top: 8px;
    margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
}
.btn-outline-primary,
.text-primary-2 {
    color: #1a6699 !important;
}
.step-number.active {
    background: #1a81c5;
    color: #fff;
}
.step-text.active {
    color: #1a81c5;
    font-weight: 600;
}
.btn-outline-primary {
    border-color: #1a6699 !important;
}

@media (max-width: 992px) {
    .step-container {
        padding: 8px 20px;
        margin-top: 40px;
        top: 58px;
    }
    .step-container .content {
        padding: 0 !important;
    }
    .step-number {
        width: 40px;
        height: 40px;
    }
    .step-number i {
        font-size: 16px !important;
    }
    .step-text {
        font-size: 12px;
        display: none;
    }
}

.logo-strip .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.logo-strip .client-logo {
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-strip .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


/* Most Popular Plan Styling */
.card.most-popular {
  background-color: #007bff;  /* Blue background */
  color: white;  /* White text */
  transform: scale(1.05); /* Slightly enlarge the card */
  position: relative; /* Position relative to place the 'Most Popular' label */
}

.card.most-popular .card-body {
  position: relative;
}

.most-popular .btn-light {
  background-color: white;
  color: #007bff;
  border: 2px solid #007bff;
}

.most-popular-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5c5c;
  color: white !important;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50px;
  z-index: 10;
}

/* semua heading & class heading di dalam most-popular ikut warna parent */
.card.most-popular :is(h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,.see-feature) {
  color: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .card-body {
    padding: 15px;
  }
}

/*baru*/
@media (min-width: 992px) {
  #benefit-slider.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;                 /* mirip g-4 */
  }
  #benefit-slider .benefit-item {
    width: calc(25% - 1.125rem); /* 4 kolom */
  }
}

/* Saat slick aktif, jangan paksa grid */
#benefit-slider.slick-initialized {
  display: block !important;
}

/* Spasi antar slide saat mobile */
#benefit-slider .slick-slide {
  padding: 0 8px;
}
#benefit-slider .slick-list {
  margin: 0 -8px;
}

/* Dots rapih */
#benefit-slider .slick-dots {
  margin-top: 14px;
}

.feature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  margin-top: 12px;
}

.feature-ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-li{
  position: relative;
  padding-left: 28px;   /* indent teks */
  margin-bottom: 14px;
  line-height: 1.5;
}

.feature-li::before{
  content: "\f26b";                 /* bi-check-circle */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--bs-primary);
  line-height: 1;
}

@media (max-width: 576px){
  .feature-grid{
    grid-template-columns: 1fr;   /* jadi 1 list */
    column-gap: 0;
  }
}

/* Vertical center untuk semua item di slick */
#clientSlider .slick-track{
  display: flex !important;
  align-items: center;     /* ini yang bikin center vertical */
}

/* Biar slick tidak maksa tinggi slide */
#clientSlider .slick-slide{
  height: auto;
  padding: 0 14px;   /* atur gap di sini */
}

/* Kadang wrapper slick bikin gambar “nggak ke-center”, ini bantu */
#clientSlider .slick-slide > div{
  height: 100%;
  display: flex;
  align-items: center;     /* center vertical di dalam slide */
  justify-content: center; /* tetap center horizontal */
}

/* optional: jaga logo tetap rapi */
#clientSlider .client-logo{
  display: block;
  max-height: 60px;  /* sesuaikan */
  width: auto;
}
