:root {
  --navbar-height: 70px;
  --primary: #0d6efd;
}

/* ================= GLOBAL ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
  padding-top: var(--navbar-height);
  font-family: system-ui, -apple-system, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 55px;
}

/* ================= NAVBAR ================= */
#navbar {
  background: white;
  padding: 16px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
}

#navbar.shrink {
  padding: 8px 0;
}

/* logo */
.navbar-brand img {
  height: 40px;
  transition: 0.3s;
}

#navbar.shrink .navbar-brand img {
  height: 30px;
}

.navbar-brand span {
  font-size: 18px;
  transition: 0.3s;
  white-space: nowrap;
}

#navbar.shrink .navbar-brand span {
  font-size: 16px;
}

/* nav link */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* underline animasi */
.nav-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary) !important;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(to right, #0d6efd, #3a86ff);
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 1300px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
}

.hero .row {
  align-items: center;
}

/* ================= STACK ================= */
.stack-container {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* glow background */
.stack-container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  filter: blur(80px);
  z-index: 0;
}

/* IMAGE */
.stack-img {
  position: absolute;
  width: 100%;
  max-width: 540px;
  border-radius: 16px;
  transition: all 0.6s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* FRONT */
.stack-front {
  z-index: 3;
  transform: translate(0, 0) scale(1.02);
  opacity: 1;
}

/* MIDDLE */
.stack-middle {
  z-index: 2;
  transform: translate(20px, 15px) scale(0.98);
  opacity: 0.85;
}

/* BACK */
.stack-back {
  z-index: 1;
  transform: translate(40px, 30px) scale(0.94);
  opacity: 0.7;
}

/* ===== ROADMAP ===== */

.product-roadmap {
  padding: 90px 0;
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

/* TITLE */
.roadmap-subtitle {
  max-width: 600px;
  margin: auto;
}

/* GRID */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.roadmap-item {
  background: white;

  border-radius: 24px;

  padding: 32px;

  position: relative;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.roadmap-item:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(13,110,253,0.12);
}

/* ICON */
.roadmap-icon {
  width: 70px;
  height: 70px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  margin-bottom: 24px;
}

/* COLORS */
.blue {
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
}

.cyan {
  background: rgba(13,202,240,0.12);
  color: #0dcaf0;
}

.gold {
  background: rgba(255,193,7,0.12);
  color: #f59e0b;
}

/* LABEL */
.roadmap-label {
  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #0d6efd;
}

.standard {
  color: #0dcaf0;
}

.premium-text {
  color: #f59e0b;
}

/* TITLE */
.roadmap-item h3 {
  font-size: 28px;
  font-weight: 700;

  margin: 14px 0;

  line-height: 1.2;

  color: #111827;
}

/* TEXT */
.roadmap-item p {
  font-size: 15px;
  color: #6b7280;

  line-height: 1.7;

  margin-bottom: 24px;
}

/* LIST */
.roadmap-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-item ul li {
  position: relative;

  padding-left: 22px;

  margin-bottom: 14px;

  color: #4b5563;
}

.roadmap-item ul li::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #0d6efd;

  position: absolute;
  left: 0;
  top: 9px;
}

/* ===== BUSINESS DOMAIN SECTION ===== */
.business-section {
  background: #f8f9fa;
}

/* label kecil */
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: #0d6efd;
  letter-spacing: 1px;
}

/* title */
.section-title {
  font-weight: 700;
  font-size: 36px;
}

/* ===== GRID ===== */
.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===== CARD ===== */
.business-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  cursor: pointer;
}

/* hover */
.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,110,253,0.15);
}

.business-card:hover .icon {
  transform: scale(1.1);
  background: #0d6efd;
  color: white;
}

/* active (highlight) */
.business-card.active {
  border: 2px solid #0d6efd;
  transform: scale(1.02);
}

/* icon */
.business-card .icon {
  width: 50px;
  height: 50px;
  background: #e7f1ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 12px;
}

/* title */
.business-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* desc */
.business-card p {
  font-size: 14px;
  color: #666;
}

/* tags */
.tags {
  margin-top: 10px;
}

.tags span {
  display: inline-block;
  background: #e7f1ff;
  color: #0d6efd;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 3px;
}

/* ===== TARGET AUDIENCE SECTION ===== */
.audience-user-section {
  padding: 90px 0;

  background: linear-gradient(
    to bottom,
    #ffffff,
    #f8fbff
  );
}

/* GRID */
.audience-user-section .row {
  row-gap: 24px;
}

/* CARD */
.user-card {
  background: #fff;

  border-radius: 24px;

  padding: 28px 24px;

  height: 100%;

  text-align: center;

  border: 1px solid rgba(13,110,253,0.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* SUBTLE GLOW */
.user-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.08),
    transparent
  );

  opacity: 0;

  transition: 0.4s;
}

/* HOVER */
.user-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 45px rgba(13,110,253,0.12);
}

.user-card:hover::before {
  opacity: 1;
}

/* ICON */
.user-card .icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 20px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(13,110,253,0.08);

  color: #0d6efd;

  font-size: 30px;
}

/* TITLE */
.user-card h5 {
  font-size: 20px;
  font-weight: 700;

  margin-bottom: 12px;

  color: #111827;
}

/* TEXT */
.user-card p {
  font-size: 14px;

  line-height: 1.7;

  color: #6b7280;

  margin-bottom: 0;
}

/* SECTION TITLE */
.audience-user-section .section-title {
  font-size: 40px;
  font-weight: 700;

  color: #111827;

  margin-bottom: 14px;
}

/* SECTION DESC */
.audience-user-section .section-desc {
  max-width: 700px;

  margin: auto;

  font-size: 16px;

  line-height: 1.8;

  color: #6b7280;
}

/* ===== BUSINESS PROCESS ===== */
.process-section {
  background: #f8f9fa;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

/* GARIS FLOW */
.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

/* CARD */
.process-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13,110,253,0.15);
}

/* STEP NUMBER */
.process-card .step {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* ICON */
.process-card .icon {
  width: 60px;
  height: 60px;
  background: #e7f1ff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 24px;
  margin: 20px auto 10px;
}

/* TITLE */
.process-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

/* TEXT */
.process-card p {
  font-size: 14px;
  color: #666;
}

/* ===== USE CASES ===== */
/* ===== USE CASE SECTION ===== */
.usecase-diagram {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.usecase-diagram::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,110,253,0.15), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 0;
}

/* ===== IMAGE ===== */
.usecase-img {
  max-width: 850px;
  border-radius: 20px;
  padding: 10px;
  background: white;

  box-shadow:
    0 25px 60px rgba(13,110,253,0.15),
    0 10px 25px rgba(0,0,0,0.1);

  transition: 0.4s ease;
  position: relative;
  z-index: 2;
}

/* hover zoom subtle */
.usecase-img:hover {
  transform: scale(1.02);
}

/* ===== CARD ===== */
.usecase-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 24px;
  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.6);

  border: 1px solid rgba(255,255,255,0.4);

  transition: all 0.3s ease;
  height: 100%;
}

/* hover effect */
.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(13,110,253,0.2),
    0 10px 20px rgba(0,0,0,0.1);
}

/* ===== TITLE ===== */
.usecase-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

/* underline accent */
.usecase-card h5::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #0d6efd;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

/* ===== LIST ===== */
.usecase-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.usecase-card li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  position: relative;
}

/* custom bullet */
.usecase-card li::marker {
  color: #0d6efd;
}

/* ===== PARAGRAPH ===== */
.usecase-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== SECTION TITLE ===== */
.usecase-diagram .section-title {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .usecase-img {
    max-width: 100%;
  }
}

/* ===== PROCESS & POLICIES SECTION ===== */
.process-poli-section,
#process-poli {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* TITLE */
.process-poli-section .section-title,
#process-poli .section-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
}

.process-poli-section .section-desc,
#process-poli .section-desc {
  color: #666;
  max-width: 500px;
}

/* CARD */
.process-poli-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  height: 100%;

  border: 1px solid rgba(13,110,253,0.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

/* subtle glow effect */
.process-poli-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.12),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

/* hover */
.process-poli-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(13,110,253,0.18);
}

.process-poli-card:hover::before {
  opacity: 1;
}

/* ICON */
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  background: rgba(13,110,253,0.1);
  color: #0d6efd;

  box-shadow: 0 8px 20px rgba(13,110,253,0.15);
}

/* TITLE CARD */
.process-poli-card h5 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* LIST */
.process-poli-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ITEM */
.process-poli-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
}

/* NUMBER BULLET */
.process-poli-card li span {
  min-width: 28px;
  height: 28px;

  background: #e7f1ff;
  color: #0d6efd;

  font-weight: 600;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-poli-section .section-title,
  #process-poli .section-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .process-poli-section,
  #process-poli {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .process-poli-section .section-title,
  #process-poli .section-title {
    font-size: 26px;
  }
}

/* ========================================= CUSTOMIZATION SECTION ========================================= */

.customization-section {
    padding: 110px 0;
    background: linear-gradient(
        to bottom,
        #f7faff,
        #ffffff
    );
    position: relative;
    overflow: hidden;
}

/* ========================================= HEADER ========================================= */

.customization-header {
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}

.custom-title {
    font-size: 48px;
    font-weight: 625;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 22px;
}

.custom-title span {
    color: #2563eb;
}

.custom-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

/* ========================================= GRID ========================================= */

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

/* ========================================= CARD ========================================= */

.custom-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 38px 32px;
    position: relative;
    transition: 0.35s ease;
    border: 1px solid #eef2ff;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.18);

    box-shadow:
        0 20px 40px rgba(37, 99, 235, 0.08);
}

/* ========================================= ICON ========================================= */

.custom-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.12),
        rgba(59, 130, 246, 0.04)
    );

    margin-bottom: 28px;
}

.custom-icon i {
    font-size: 24px;
    color: #2563eb;
}

/* ========================================= TEXT ========================================= */

.custom-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.custom-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0;
}

/* ========================================= LARGE CARD ========================================= */

.custom-card-large {
    grid-column: span 3;

    display: flex;
    align-items: center;
    gap: 28px;

    padding: 42px;
}

.custom-card-large .custom-icon {
    margin-bottom: 0;
    min-width: 72px;
}

/* ========================================= RESPONSIVE ========================================= */

@media (max-width: 991px) {

    .customization-section {
        padding: 90px 0;
    }

    .custom-title {
        font-size: 40px;
    }

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

    .custom-card-large {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {

    .custom-title {
        font-size: 34px;
    }

    .custom-subtitle {
        font-size: 15px;
    }

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

    .custom-card-large {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-card {
        padding: 32px 26px;
    }

    .custom-card h5 {
        font-size: 22px;
    }
}

/* ===== COMPETITOR ===== */
.competitor-section {
  background: #f8f9fa;
}

.compare-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
  transition: 0.3s;
}

.compare-card ul {
  padding-left: 18px;
  margin-top: 15px;
}

.compare-card li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.compare-card.highlight {
  border: 2px solid #0d6efd;
  box-shadow: 0 20px 50px rgba(13,110,253,0.15);
}

.compare-card.highlight h5 {
  color: #0d6efd;
}

.compare-card:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .audience-user-section .row {
    row-gap: 20px;
  }

  .section-title {
    font-size: 28px;
  }
}

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }
.reveal:nth-child(7) { transition-delay: 0.7s; }
.reveal:nth-child(8) { transition-delay: 0.8s; }
.reveal:nth-child(9) { transition-delay: 0.9s; }

/* ================= ABOUT ================= */
.about-section {
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
  padding: 80px 0;
}

/* title */
.about-section .section-title {
  font-weight: 700;
}

/* text */
.about-section p {
  line-height: 1.7;
}

/* highlight */
.about-highlight {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-highlight span {
  background: #eef3ff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: #0d6efd;
  font-weight: 500;
  transition: 0.3s;
}

/* hover dikit biar hidup */
.about-highlight span:hover {
  background: #0d6efd;
  color: white;
}

/* ================= PROBLEM SAAS ================= */
.problem-card-saas {
  background: white;
  padding: 30px 25px;
  border-radius: 18px;
  width: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* subtle gradient glow */
.problem-card-saas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(13,110,253,0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* hover effect */
.problem-card-saas:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13,110,253,0.15);
}

.problem-card-saas:hover::before {
  opacity: 1;
}

/* icon box modern */
.icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0d6efd, #3a86ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 15px;
  box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

/* title */
.problem-card-saas h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* desc */
.problem-card-saas p {
  color: #6c757d;
  font-size: 14px;
}

/* ================= SOLUTION SECTION ================= */
.solution-section {
  background: #ffffff;
}

/* LIST WRAPPER */
.solution-list-saas {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM */
.solution-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

/* hover subtle */
.solution-item:hover {
  background: #f8f9ff;
}

/* ICON CHECK */
.check-icon {
  min-width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d6efd, #3a86ff);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}

/* TEXT */
.solution-item h6 {
  margin: 0;
  font-weight: 600;
}

.solution-item p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #6c757d;
}

/* HIGHLIGHT BOX */
.solution-highlight-box {
  background: linear-gradient(135deg, #0d6efd, #3a86ff);
  color: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(13,110,253,0.3);
  transition: 0.3s;
}

/* hover dikit biar hidup */
.solution-highlight-box:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .solution-highlight-box {
    margin-top: 20px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;

  background: linear-gradient(
    to bottom,
    #f8fbff,
    #ffffff
  );
}

/* GRID FIX */
.pricing-section .row {
  align-items: stretch;
  row-gap: 24px;
}

.pricing-section .col-lg-3,
.pricing-section .col-md-6 {
  display: flex;
}

/* ===== ANIMATION ===== */
.modal-content {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BILLING TOGGLE ===== */
.pricing-section .billing-toggle {
  display: inline-flex;

  background: #eef3ff;

  padding: 6px;

  border-radius: 999px;

  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.04);
}

.pricing-section .billing-toggle span {
  padding: 9px 20px;

  border-radius: 999px;

  cursor: pointer;

  font-size: 14px;
  font-weight: 600;

  color: #6b7280;

  transition: all 0.3s ease;
}

.pricing-section .billing-toggle span.active {
  background: #0d6efd;

  color: white;

  box-shadow:
    0 8px 20px rgba(13,110,253,0.25);
}

/* ===== CARD ===== */
.pricing-section .price-card {
  width: 100%;

  background: #fff;

  border-radius: 28px;

  padding: 24px;

  height: 100%;

  display: flex;
  flex-direction: column;

  position: relative;

  overflow: hidden;

  border: 1px solid rgba(13,110,253,0.06);

  box-shadow:
    0 10px 35px rgba(0,0,0,0.05);

  transition: all 0.35s ease;
}

/* SUBTLE GLOW */
.pricing-section .price-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.08),
    transparent
  );

  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.pricing-section .price-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 50px rgba(13,110,253,0.14);
}

.pricing-section .price-card:hover::before {
  opacity: 1;
}

/* ===== HEADER ===== */
.pricing-section .price-header {
  margin-top: 18px;
  margin-bottom: 22px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ===== PRICE ===== */
.pricing-section .price {
  font-size: 36px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 8px;

  color: #0d6efd;
}

/* ===== BILLING ===== */
.pricing-section .billing-text {
  font-size: 14px;

  color: #6b7280;

  margin-bottom: 14px;
}

/* ===== DESC ===== */
.pricing-section .desc {
  font-size: 14px;

  line-height: 1.7;

  color: #6b7280;

  margin-bottom: 0;

  min-height: 70px;
}

/* ===== FEATURE WRAPPER ===== */
.pricing-section .feature-wrapper {
  flex: 1;

  margin-bottom: 24px;
}

/* ===== FEATURE LIST ===== */
.pricing-section .feature-list {
  list-style: none;

  padding: 0;
  margin: 0;
}

.pricing-section .feature-list li {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-bottom: 14px;

  color: #4b5563;

  line-height: 1.6;

  font-size: 14px;
}

/* CHECK ICON */
.pricing-section .feature-list li::before {
  content: "\F26E";

  font-family: "bootstrap-icons";

  color: #0d6efd;

  font-size: 14px;

  margin-top: 2px;

  flex-shrink: 0;
}

/* ===== BADGE ===== */
.pricing-section .price-card .badge {
  position: absolute;

  top: 18px;
  right: 18px;

  padding: 7px 12px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

/* ===== UMKM ===== */
.pricing-section .price-card.umkm {
  border: 2px solid rgba(25,135,84,0.18);
}

.pricing-section .price-card.umkm .price {
  color: #198754;
}

.pricing-section .price-card.umkm .badge {
  background: rgba(25,135,84,0.1);

  color: #198754;
}

/* ===== STANDARD ===== */
.pricing-section .price-card.standard {
  border: 2px solid rgba(13,110,253,0.12);

  background: linear-gradient(
    135deg,
    #ffffff,
    #f6f9ff
  );

  box-shadow:
    0 20px 50px rgba(13,110,253,0.16);
}

.pricing-section .price-card.standard .badge {
  background: rgba(13,110,253,0.1);

  color: #0d6efd;
}

/* ===== PREMIUM ===== */
.pricing-section .price-card.premium {
  background: linear-gradient(
    135deg,
    #02142b,
    #001d4d
  );

  color: white;

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
}

.pricing-section .price-card.premium .price {
  color: #ffd43b;
}

.pricing-section .price-card.premium .billing-text,
.pricing-section .price-card.premium .desc,
.pricing-section .price-card.premium .feature-list li {
  color: rgba(255,255,255,0.8);
}

.pricing-section .price-card.premium .feature-list li::before {
  color: #ffd43b;
}

.pricing-section .price-card.premium .price-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-section .premium-badge {
  background: rgba(255,212,59,0.15);

  color: #ffd43b;
}

/* ===== BUTTON ===== */
.pricing-section .btn-pilih {
  width: 100%;

  border-radius: 16px;

  padding: 14px;

  font-size: 14px;
  font-weight: 600;

  border: none;

  background: linear-gradient(
    135deg,
    #0d6efd,
    #2563eb
  );

  box-shadow:
    0 10px 25px rgba(13,110,253,0.2);

  transition: all 0.3s ease;
}

.pricing-section .btn-pilih:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 35px rgba(13,110,253,0.28);
}

/* ===== PREMIUM BUTTON ===== */
.pricing-section .price-card.premium .btn-pilih {
  background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6
  );
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

  .pricing-section .price-card.standard {
    transform: none;
  }

}

@media (max-width: 768px) {

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-section .price-card {
    padding: 22px;
  }

  .pricing-section .price {
    font-size: 32px;
  }

  .pricing-section .desc {
    min-height: auto;
  }

}

/* ================= FEATURE SECTION ================= */

/* ===== CARD ===== */
.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* hover */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(13,110,253,0.12);
}

/* icon */
.feature-icon {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

/* text */
.feature-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* hint */
.feature-card::after {
  content: "Klik untuk lihat";
  font-size: 11px;
  color: #aaa;
  display: block;
  margin-top: 5px;
}

/* ===== EXPAND AREA ===== */
.feature-expand {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* gambar */
.feature-expand img {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

/* ACTIVE */
.feature-card.active {
  transform: scale(1.02);
}

.feature-card.active .feature-expand {
  max-height: 400px;
  opacity: 1;
}

/* DIM CARD LAIN */
.feature-card.dim {
  opacity: 0.4;
  transform: scale(0.95);
}

/* ===== COMPLIMENTARY SECTION ===== */
.complementary-section {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* CARD */
.comp-card {
  background: #fff;

  border-radius: 24px;

  padding: 22px;

  height: 100%;

  border: 1px solid rgba(13,110,253,0.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

/* subtle gradient glow */
.comp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.12),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

/* hover effect */
.comp-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 45px rgba(13,110,253,0.14);
}

.comp-card:hover::before {
  opacity: 1;
}

/* IMAGE WRAPPER */
.comp-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 18px;

  background: #f8fbff;
  padding: 12px;
  transition: 0.4s;
}

/* zoom dikit pas hover */
.comp-card:hover .comp-img {
  transform: scale(1.05);
}

/* TITLE */
.comp-card h6 {
  font-weight: 700;
  font-size: 18px;

  margin-top: 18px;
  margin-bottom: 10px;
  color: #111827;
}

/* DESC */
.comp-card p {
  font-size: 14px;
  color: #6b7280;

  line-height: 1.7;
  margin-bottom: auto;
}

/* PRICE (BIAR MENONJOL) */
#complementary .price {
  display: inline-block;
  margin-top: 18px;

  font-weight: 700;
  font-size: 22px;
  color: #0d6efd;
}


/* OPTIONAL BADGE */
.comp-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;

  background: #0d6efd;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== PPOB CARD ===== */

.ppob-card {
  display: flex;
  align-items: center;

  gap: 40px;

  padding: 32px;
}

/* LEFT SIDE */
.ppob-left {
  flex-shrink: 0;
}

/* ICON */
.digital-icon {
  width: 90px;
  height: 90px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(13,110,253,0.08);

  color: #0d6efd;

  font-size: 40px;
}

/* CONTENT */
.ppob-content {
  flex: 1;
}

/* BADGE */
.ppob-content .badge {
  position: static;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;

  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;

  border-radius: 999px;
  margin-bottom: 14px;
  display: inline-block;
}

/* TITLE */
.ppob-content h5 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111827;
}

/* DESC */
.ppob-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 22px;
}

/* FEATURES */
.ppob-features {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
  margin-bottom: 22px;
}

.ppob-features span {
  background: #f8fbff;
  border: 1px solid rgba(13,110,253,0.08);
  padding: 10px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 500;
  color: #0d6efd;
}

/* ================= FAQ ================= */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
  font-weight: 500;
  background: white;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: white;
}

.faq-accordion .accordion-body {
  background: #f8f9fa;
}

/* ================= CONTACT ================= */
.contact-box {
  background: linear-gradient(135deg, #0d6efd, #3a86ff);
  color: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(13,110,253,0.3);
}

.contact-box .btn-primary {
  background: white;
  color: #0d6efd;
  border: none;
}

.contact-box .btn-outline-primary {
  border-color: white;
  color: white;
}

.contact-box .btn-outline-primary:hover {
  background: white;
  color: #0d6efd;
}

.contact-info i {
  margin-right: 6px;
}

/* ================= TESTIMONI ================= */
.swiper {
  padding: 30px 0;
}

.testimonial-card {
  width: 100%;
  max-width: 320px;
  margin: auto;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 26px;
  border-radius: 22px;
  text-align: center;

  transition: 
    transform 0.5s cubic-bezier(.22,1,.36,1),
    box-shadow 0.5s ease;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  border: 1px solid rgba(255,255,255,0.5);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;

  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}

/* ===== TEXT ===== */
.testimonial-card h5 {
  font-weight: 600;
  margin-top: 10px;
  font-size: 18px;
}

.testimonial-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* blur kiri kanan */
.swiper-slide {
  transform: scale(0.85);
  opacity: 0.4;
  filter: blur(3px);
  transition: 0.4s;
}

/* ===== SIDE CARDS DEPTH ===== */
.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
  transform: scale(0.95);
}

/* ===== POP OUT EFFECT ===== */
.swiper-slide-active .testimonial-card {
  transform: translateY(-10px);

  box-shadow:
    0 30px 80px rgba(13,110,253,0.25),
    0 10px 25px rgba(0,0,0,0.15);
}

/* ===== BADGE ===== */
.stars {
  display: inline-block;
  color: #ffc107;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* tengah highlight */
.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

/* smooth loop feel */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ================= PAYMENT ================= */
.payment-modal {
  border-radius: 20px;
  padding: 10px;
}

.payment-box {
  background: #e9f7ef;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.payment-box h3 {
  color: #198754;
  font-weight: 700;
}

.bank-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
}

.bank-logo {
  width: 50px;
  height: 50px;
  background: #0d6efd;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.bank-box .info p {
  margin: 0;
}

.btn-success {
  border-radius: 12px;
  padding: 12px;
  font-weight: 500;
}

/* ================= OTHER PRODUCTS ================= */
/* ===== BASE CARD ===== */
.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
  padding: 28px;
  border-radius: 18px;

  background: white;

  position: relative;
  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* hover naik */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13,110,253,0.15);
}

/* glow effect */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.product-card:hover::before {
  opacity: 1;
}

/* content */
.product-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* icon */
.product-card i {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 12px;
  display: block;
  transition: 0.3s;
}

/* title */
.product-card h5 {
  font-weight: 600;
}

/* desc */
.product-card p {
  font-size: 14px;
  color: #666;
}

/* CTA kecil */
.card-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #0d6efd;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

/* muncul pas hover */
.product-card:hover .card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* click feedback */
.product-card:active {
  transform: scale(0.97);
}

/* ================= MOBILE HERO ================= */
@media (max-width: 768px) {

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  /* carousel spacing */
  .carousel-item img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-radius: 12px;
  }

  .carousel-item img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  }

    /* indicator lebih kecil & clean */
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

}

/* =========================================================
   GLOBAL RESPONSIVE SYSTEM
========================================================= */

/* ================= LARGE DESKTOP ================= */
@media (max-width: 1400px) {

  .hero h1,
  .custom-title {
    font-size: 46px;
  }

}

/* ================= LAPTOP ================= */
@media (max-width: 1200px) {

  /* SECTION TITLE */
  .section-title,
  .custom-title,
  .audience-user-section .section-title {
    font-size: 40px;
  }

  /* HERO */
  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  /* GRID */
  .roadmap-grid,
  .customization-grid {
    gap: 22px;
  }

  /* PROCESS */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  /* GLOBAL */
  section {
    overflow: hidden;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* NAVBAR */
  #navbar {
    padding: 12px 0;
  }

  #navbar .container {
    flex-wrap: wrap;
  }

  .navbar-brand {
    min-width: 0;
  }

  .navbar-toggler {
    width: auto !important;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 6px 10px;
    border: none;
    box-shadow: none !important;
    background: transparent;
  }

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

  .navbar-collapse {
    flex-basis: 100%;
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 16px;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.08);
  }

  .nav-link {
    padding: 10px 0;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

  #heroCarousel {
    max-width: min(100%, 520px);
    margin: 0 auto 28px;
  }

  /* STACK IMAGE */
  .stack-container {
    height: 360px;
    margin-top: 40px;
  }

  .stack-img {
    max-width: 420px;
  }

  /* SECTION TITLE */
  .section-title,
  .custom-title,
  .audience-user-section .section-title,
  .process-poli-section .section-title,
  #process-poli .section-title {
    font-size: 34px;
  }

  /* BUSINESS */
  .business-grid {
    grid-template-columns: 1fr;
  }

  /* ROADMAP */
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CUSTOMIZATION */
  .customization-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-card-large {
    grid-column: span 2;
  }

  /* USECASE */
  .usecase-img {
    max-width: 100%;
  }

  /* PPOB */
  .ppob-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .ppob-features {
    justify-content: center;
  }

  /* TESTIMONIAL */
  .testimonial-card {
    max-width: 100%;
  }

}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* GLOBAL */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 0 !important;
  }

  /* TITLE */
  .section-title,
  .custom-title,
  .audience-user-section .section-title,
  .process-poli-section .section-title,
  #process-poli .section-title {
    font-size: 28px !important;
    line-height: 1.3;
  }

  .section-desc,
  .custom-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .navbar-toggler {
    width: auto !important;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 6px 10px;
    border: none;
    box-shadow: none !important;
    background: transparent;
  }

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

  /* HERO */
  .hero {
    padding: 110px 0 70px !important;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  /* STACK */
  .stack-container {
    height: 260px;
  }

  .stack-img {
    max-width: 300px;
    border-radius: 12px;
  }

  /* GRID GLOBAL */
  .roadmap-grid,
  .business-grid,
  .process-grid,
  .customization-grid {
    grid-template-columns: 1fr;
  }

  .custom-card-large {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  /* CARD */
  .roadmap-item,
  .business-card,
  .process-card,
  .custom-card,
  .feature-card,
  .compare-card,
  .comp-card,
  .product-card {
    padding: 22px;
    border-radius: 20px;
  }

  /* ICON */
  .custom-icon,
  .user-card .icon,
  .process-card .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  /* ROADMAP */
  .roadmap-item h3 {
    font-size: 24px;
  }

  /* USER CARD */
  .user-card {
    padding: 24px 20px;
  }

  .user-card h5 {
    font-size: 18px;
  }

  /* PRICING */
  .pricing-section .price-card {
    padding: 24px 20px;
  }

  .pricing-section .price {
    font-size: 30px;
  }

  .pricing-section .btn-pilih {
    padding: 12px;
  }

  /* PAYMENT */
  .payment-box,
  .bank-box {
    padding: 18px;
  }

  /* CONTACT */
  .contact-box {
    padding: 35px 24px;
    text-align: center;
  }

  /* BUTTON */
  .hero .btn,
  .solution-highlight-box .btn,
  .contact-box .btn,
  .pricing-section .btn-pilih,
  #complementary .btn {
    width: 100%;
  }

  .btn-close,
  .carousel-indicators button,
  .accordion-button,
  .pricing-section .billing-toggle span {
    width: auto;
  }

  /* FAQ */
  .faq-accordion .accordion-button {
    font-size: 14px;
  }

}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-toggler {
    width: auto !important;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 6px 10px;
    border: none;
    box-shadow: none !important;
    background: transparent;
  }

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

  .hero h1 {
    font-size: 26px;
  }

  .section-title,
  .custom-title {
    font-size: 24px !important;
  }

  .hero p,
  .custom-subtitle,
  .section-desc {
    font-size: 14px;
  }

  .stack-container {
    height: 220px;
  }

  .stack-img {
    max-width: 240px;
  }

  .pricing-section .billing-toggle {
    width: 100%;
    justify-content: center;
  }

  .pricing-section .billing-toggle span {
    flex: 1;
    text-align: center;
  }

  .ppob-content h5 {
    font-size: 22px;
  }

  .comp-img {
    height: 160px;
  }

}

/* ================= FIX OVERFLOW ================= */
img,
svg,
iframe,
video {
  max-width: 100%;
  height: auto;
}

/* FIX LONG TEXT */
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* FIX GRID OVERFLOW */
.row,
.container,
.container-fluid {
  margin-left: auto;
  margin-right: auto;
}

.row > *,
.roadmap-item,
.business-card,
.user-card,
.usecase-card,
.process-card,
.custom-card,
.compare-card,
.feature-card,
.price-card,
.comp-card,
.product-card,
.problem-card-saas,
.solution-highlight-box,
.contact-box,
.modal-content,
.ppob-content {
  min-width: 0;
}

.about-highlight span,
.tags span,
.ppob-features span,
.pricing-section .billing-toggle span,
.badge {
  max-width: 100%;
  white-space: normal;
}

.bank-logo,
.check-icon,
.icon-box,
.digital-icon {
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 34px;
  }

  .navbar-brand span {
    font-size: 15px;
  }

  .hero-content .row {
    row-gap: 26px;
  }

  .about-highlight,
  .tags,
  .ppob-features {
    gap: 8px;
  }

  .about-highlight span,
  .tags span,
  .ppob-features span {
    flex: 1 1 100%;
    text-align: center;
  }

  .ppob-card {
    padding: 24px 18px;
  }

  .ppob-features span {
    padding: 9px 12px;
  }

  .modal-dialog {
    margin: 0.75rem;
  }

  .payment-modal {
    padding: 0;
  }

  .bank-box .d-flex {
    align-items: flex-start !important;
  }

  .contact-info p {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
}
