@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --primary: #1C4BD1;
  --primary-hover: #1D4ED8;
  --primary-light: #EFF6FF;
  --accent-yellow: #FACC15;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-600: #4B5563;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --white: #FFFFFF;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --text-title: 50px;
  --text-subtitle: 30px;
  --text-body: 18px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --header-h: 80px;
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 75px;
  /* Kompensasi header fixed */
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--slate-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  /* Ganti hidden → clip agar sticky/fixed tetap bekerja */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.text-primary {
  color: var(--primary);
}

.text-slate-900 {
  color: var(--slate-900);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: var(--text-body);
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn--header {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 15px;
  border-radius: 10px;
  justify-self: end;
}

.btn--white-pill {
  background: #0D2A7A;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--primary::after,
.btn--white-pill::after,
.cta-banner__button::after,
.cta-final__button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after,
.btn--white-pill:hover::after,
.cta-banner__button:hover::after,
.cta-final__button:hover::after {
  left: 150%;
}

.btn--white-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #1A3B8A;
}

.btn i {
  font-size: 1.1em;
}

/* Header / Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 75px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav.container {
  margin: 0 auto;
  max-width: none;
  width: calc(100% - 12rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav__logo img {
  height: 70px;
  /* Enlarged logo */
  width: auto;
  margin-bottom: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__link {
  font-weight: 500;
  font-size: 14px;
  color: #4B5563;
  /* transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);  position: relative; */
}

.nav__link:hover {
  /* border-bottom: 2px solid var(--primary); */
  color: #4b55636c;
}

.variant-seconds-label {
  color: #1D4ED8;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.variant-seconds-label li {
  list-style: none;
  color: #2C2B2E;
  text-align: left;
}

.variant-seconds-label h1 {
  border: 2px solid;
  padding: 5px;
  border-radius: 5px;
  font-size: 20px;
}

.nav__toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--slate-900);
  background: transparent;
  border: none;
  cursor: pointer;
  order: 3;
  padding: 0.25rem;
}

/* Hero */
.hero {
  padding: 1.5rem 2px 0;
  background: #FFFFFF;
  /* Fallback */
  position: relative;
  overflow: visible;

}

.hero__content {
  margin-top: 60px;
}

.hero__bg-wrap {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: url('../images/bg.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
  transition: transform 0.2s ease-out;
  pointer-events: none;
  animation: floatBG 12s ease-in-out infinite;
}

@keyframes floatBG {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -15px);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  /* Above background */
  margin-inline: auto;
  max-width: 1200px;
  width: min(1200px, 100% - 3rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  background: #EFF6FF;
  color: #3B82F6;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0.25rem;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 50px;
  /* ukuran fixed, tidak bergantung pada --text-title */
  font-weight: 500;
  line-height: 1.1;
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.hero__title .line-1,
.hero__title .line-2 {
  display: block;
  white-space: nowrap;
  font-weight: 300;
}

.hero__title br {
  display: none;
}

.hero__title span span {
  color: var(--primary);
  font-weight: 800;
}

.hero__lead {
  color: #4B5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-wrap: balance;
  text-align: left;
}

.hero__actions {
  gap: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: default;
}

.hero__stat-val {
  color: #3763B1;
  font-size: var(--text-subtitle);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  transition: color 0.3s ease;
}

.hero__stat-label {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  margin-top: 4px;
}

.hero__badges-img {
  max-width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;

  gap: 1rem;

}

.hero__badges-img img {
  height: 45px;
  /* Consistent height */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0;
}

@media (max-width: 768px) {
  .hero__badges-img {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px !important;
    justify-items: center !important;
    position: static !important;
    left: auto !important;
    margin: 20px auto 0 auto !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  .hero__badges-img img {
    width: 100% !important;
    height: auto !important;
    max-width: 140px !important;
    position: static !important;
    left: auto !important;
    margin: 0 !important;
  }
}



@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

.hero__content {
  margin-top: 40px;
}

.hero__monitor-wrap {
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
  margin: auto;
  /* Tidak pakai absolute agar tidak terpotong */
  width: 400px;
}

.hero__monitor-img {
  width: 180%;
  /* Memaksa gambar jauh lebih besar dari kontainernya */
  flex-shrink: 0;
  /* Mencegah flexbox mengecilkan gambar otomatis */
  max-width: none;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  /* animation: floatSimple 6s ease-in-out infinite; */
  margin-right: -16rem;
  margin-top: 3rem;
  position: relative;
  left: -4rem;
  bottom: 50px;
  margin-bottom: -6rem;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
  /* Menarik bagian bawah hero ke atas agar tulisan Institusi langsung terlihat */
  /* Sedikit keluar ke kanan untuk efek dramatis tanpa terpotong */
}


@keyframes floatSimple {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Partners */
.partners {
  padding: 0.5rem 0 3rem;
  /* Tambah padding bawah agar seksi biru produk terdorong ke bawah */
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners__label {
  text-align: center;
  font-size: 15px;
  color: #4B5563;
  margin-bottom: 0.5rem;
}

.partners__label strong {
  color: #111827;
}

.partners__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 25s linear infinite;
  margin-top: 30px;
}

/* - algi
We want the scrolling not get distrubed even the client hover on it
so they know who is our partner  */
/* .partners__track:hover {
  animation-play-state: paused;
} */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 80px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 45px;
  width: auto;
  display: block;
}

.partner-item img {
  height: 50px;
  width: auto;
  min-width: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: var(--transition);
}

/* Individual partner logo sizes */
.partner-item--kemenkes img {
  height: 50px;
  min-width: 70px;
}

.partner-item--balkauniku img {
  height: 50px;
  min-width: 80px;
}

.partner-item--embasy img {
  height: 70px;
  min-width: 110px;
}

.partner-item--djp img {
  height: 50px;
  min-width: 70px;
}

.partner-item--rsud img {
  height: 70px;
  min-width: 90px;
}

.partner-item--astra img {
  height: 50px;
  min-width: 90px;
}

.partner-item--denso img {
  height: 80px;
  min-width: 110px;
}

.partner-item--hrs img {
  height: 50px;
  min-width: 80px;
}

.partner-item--smt img {
  height: 80px;
  min-width: 110px;
}

.partner-item--mega img {
  height: 70px;
  min-width: 90px;
}

.partner-item:hover img {
  opacity: 1;
}

.partner-text {
  font-size: 18px;
  font-weight: 800;
  color: #94A3B8;
  white-space: nowrap;
}

/* .features utama ada di bawah bersama gradient */

.features__tag {
  display: block;
  width: fit-content;
  position: relative;
  top: 20px;
  margin: 0 auto 0.25rem auto;
  background-color: #EFF6FF;
  color: #3B82F6;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #2C2B2E;
}

/* .section-title span {
  color: #1C4BD1;
} */

.section-title--white {
  color: #2C2B2E;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 36px;
}

.section-title--white span {
  color: #2C2B2E;
}

/* Section produk: padding dikompres agar semua konten masuk 1 viewport */
.features {
  padding: 1.5rem 0 2rem;
  background: white;
  color: white;
  scroll-margin-top: 45px;
  /* Kurangi margin agar scroll lebih ke bawah */
}

.variants-container {
  background: #EBF2FE;
  border-radius: 32px;
  padding: 1rem 2.5rem 0;
  margin-bottom: 1.25rem;
  text-align: center;
  position: relative;

  overflow: hidden;
}


.features__title-blue {
  font-size: 32px;
  font-weight: 800;
  color: #1C4BD1;
  margin: 0.25rem 0 0.35rem;
  display: inline-block;
  position: relative;
  cursor: default;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Garis underline yang mekar simetris dari tengah ke kiri-kanan */
.features__title-blue::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #1C4BD1, transparent);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features__title-blue:hover {
  color: #1a41c0;
  transform: scale(1.03);
  text-shadow: 0 4px 16px rgba(28, 75, 209, 0.25);
}

.features__title-blue:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.features__lead {
  max-width: 700px;
  margin: 0 auto 0.75rem;
  font-size: clamp(13px, 1.2vw, 16px);
  color: #475569;
  line-height: 1.6;
  text-wrap: balance;
}

.solusi-section-container {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-items: center;
}

.solusi-section-container .solusi-grid {
  flex: 1;
}

.solusi-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  width: 100%;
}

.solusi-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #F7F7F7;
  padding: 4px;
}

.solusi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(28, 75, 209, 0.15);
  border-color: #BFDBFE;
}

.solusi-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-800);
  margin-top: 0;
  margin-bottom: -5px;
  display: flex;
  align-items: center;

}

.solusi-card__number {
  color: #FFFFFF;
  font-weight: 800;
  background-color: #3763B1;
  padding: 10px 20px;
  border-radius: 50%;
  transform: scale(.8);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}

.solusi-card__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
  margin-left: 60px;
}

.solusi-card-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.solusi-card-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(28, 75, 209, 0.15);
}

.solusi-card-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.solusi-section2-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EBF2FE;
  padding: 50px;
}

.solusi-section2-child1 {
  text-align: center;
}

/* the section2 */
.solusi-section2-child2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

/* this is the card of the section2 tutor how to quecare */
.solusi-section-child2,
ul {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 0;
}

.solusi-section2-child2,
h4 {
  color: #3763B1;
  font-size: 20px;

}

.solusi-section2-child2 p {
  color: #2C2B2E;
  font-size: 16px;
  margin: 0;
}

.solusi-section-child2,
img {
  margin: auto;
  margin-bottom: 20px;
}



/*  workflow line code */
.workflow-section-container {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  align-items: center;
}

.workflow-section-child {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
}

.workflow-section-child ul h1 {
  font-size: 20px;
}

.sec-arr-img {
  align-self: center;
  flex-shrink: 0;
}

/* Workflow Slider Styles */
.workflow-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
}

.workflow-slide {
  transition: all 0.3s ease;
}

.workflow-slide img {
  height: 180px;
  object-fit: contain;
  margin-bottom: 24px;
}

.workflow-slide h1 {
  margin: 0 0 16px 0;
  min-height: 100px;
}

.workflow-slide p {
  font-size: 16px;
  color: #5b5a5c;
  line-height: 1.6;
  margin: 0;
}

.workflow-track-wrap {
  width: 100%;
  overflow: visible;
}

.workflow-arrow {
  display: none;
}

.workflow-dots {
  display: none;
}

.workflow-slide:hover

/* .workflow-slide.active */
  {
  transform: none !important;
  box-shadow: inset 0 0 0 2px #bae6fd, 0 25px 50px rgba(15, 155, 234, 0.25);
  z-index: 10;
  /*background-color: #f0f9ff !important;*/
}

@media (max-width: 1024px) {
  .workflow-slide:hover {
    transform: none;
    box-shadow: none;
    z-index: 10;

  }
}

@media (max-width: 1024px) {
  .workflow-slider-wrapper {
    padding: 0 40px;
    box-sizing: border-box;
  }

  .product-section-child h2 {
    text-align: center;
  }

  .workflow-track-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .workflow-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .workflow-section-child {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }

  .workflow-slide {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
  }

  .workflow-slide img {
    margin: 0 0 24px 0;
    max-height: 180px;
    width: auto;
    object-fit: contain;
  }

  .workflow-slide h1 {
    font-size: 22px !important;
    font-weight: 700;
    color: #2C2B2E;
    margin: 0 0 12px 0 !important;
    line-height: 1.4 !important;
  }

  .workflow-slide p {
    font-size: 16px !important;
    color: #5b5a5c;
    line-height: 1.6 !important;
    max-width: 340px;
    margin: 0 !important;
  }

  .workflow-slide br {
    display: none;
  }

  .sec-arr-img {
    display: none !important;
  }

  .workflow-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E7EB;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #1C4BD1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .workflow-arrow:hover {
    background: #1C4BD1;
    color: white;
    border-color: #1C4BD1;
  }

  .workflow-arrow--left {
    left: -10px;
  }

  .workflow-arrow--right {
    right: -10px;
  }

  .workflow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .workflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .workflow-dot:hover {
    background: #2563EB;
    transform: scale(1.3);
  }

  .workflow-dot.active {
    background: #2563EB;
    width: 28px;
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .workflow-slider-wrapper {
    padding: 0 16px;
  }

  .workflow-arrow {
    display: none !important;
  }
}

/* 
FEATURED SECTION */
.fitur-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.fitur-section h1 {
  text-align: center;
  font-size: 36px;
  color: #2C2B2E;
  line-height: 1.2;
}

.fitur-section2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.fitur-section-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 24px;
  gap: 12px;
  border: 2px solid #2c2b2e17;
  border-radius: 12px;
  transition: .3s;
  margin: 0;
}

.fitur-section-child:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px -10px rgba(28, 75, 209, 0.15);
}

.fitur-section-child img {
  margin-left: 0;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 8px;
}

.fitur-section-child h3 {
  margin: 0;
  font-size: 20px;
  color: #2C2B2E;
  min-height: 64px;
}

.fitur-section-child p {
  margin: 0;
  color: #4B5563;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}

/* Responsive Featured Section */
@media (max-width: 1024px) {
  .fitur-section2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fitur-section h1 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .fitur-section {
    padding: 30px 16px;
  }

  .fitur-section2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fitur-section h1 {
    font-size: 24px;
  }

  .fitur-section h1 br,
  .fitur-section-child p br {
    display: none;
  }

  .fitur-section-child {
    padding: 20px;
  }
}

/* Any solution start */
.anysolusi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #EBF2FE;
  color: #2C2B2E;
  padding: 40px 20px;
  overflow: hidden;
}

/* child1 */
.anysolusi-title {
  text-align: center;
  width: 100%;
  line-height: .9;
}

.anysolusi-title h1 {
  font-size: 36px;
}

.anysolusi-title p {
  font-size: 18px;
}

/* Carousel Additions */
.anysolusi-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
}

.anysolusi-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.anysolusi-track-wrap h3 {
  color: #0F9BEA;
}

/*  child2  */
.anysolusi-parent {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.anysolusi-parent::-webkit-scrollbar {
  display: none;
}

.anysolusi-child {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  scroll-snap-align: start;
  box-sizing: border-box;
  transition: .3s;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.anysolusi-child h3 {
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 24px 0 10px 0;
}

.anysolusi-child p {
  font-size: 16px;
  color: #5b5a5c;
  line-height: 1.6;
  margin: 0;
}

.anysolusi-child img {
  margin: 0;
}

/* Arrow Navigation buttons */
.anysolusi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
  font-weight: bold;
  color: #1c4bd1;
  transition: all 0.2s ease;
}

.anysolusi-arrow:hover {
  background: #1c4bd1;
  color: white;
  border-color: #1c4bd1;
}

.anysolusi-arrow--left {
  left: -22px;
}

.anysolusi-arrow--right {
  right: -22px;
}

@media (max-width: 992px) {
  .anysolusi-child {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .anysolusi-arrow--left {
    left: -12px;
  }

  .anysolusi-arrow--right {
    right: -12px;
  }
}

@media (max-width: 576px) {
  .anysolusi-child {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .anysolusi-arrow--left {
    left: -8px;
  }

  .anysolusi-arrow--right {
    right: -8px;
  }
}

/* any solution end */

/* Product section start */

.product-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #EBF2FE;
  color: #2C2B2E;
  padding: 20px;
}

/* child1 */

.product-section-title {
  text-align: center;
  line-height: 1;
}

.product-section-title h1 {
  color: #3763B1;
}

.product-section-parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-section-child {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: all 0.3s ease;
}

.product-section-child:hover {
  transform: translateY(-5px) scale(1.02);
}

.product-section-child--featured {
  border: none;
  background: linear-gradient(to right, #1D4ED8, #1199E8);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.15);
  padding: 0;
}

.product-section-header-badge,
.product-section-header-spacer {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-section-header-badge {
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
}

.product-section-header-spacer {
  visibility: hidden;
}

.product-section-card-body {
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-section-child:not(.product-section-child--featured) .product-section-card-body {
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.product-section-child:hover .product-section-card-body {
  box-shadow: 0 15px 35px rgba(29, 78, 216, 0.1);
}

.product-section-child--featured .product-section-card-body {
  margin: 0 4px 4px 4px;
}

.product-section-child:not(.product-section-child--featured) .product-section-card-body {
  margin: 0 0 4px 0;
}

#psc-grid1 {
  display: flex;
  flex-direction: column;
  padding-left: 30px; padding-right: 30px; 
  padding-bottom: 40px; padding-top: 40px;
  min-height: 270px;
  box-sizing: border-box;
}

#psc-grid1 h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2C2B2E;
  margin: 0 0 8px 0;
}

#psc-grid1 p {
  font-size: 14px;
  color: #2C2B2E;
  margin: 4px 0;
  line-height: 1.5;
}

#psc-grid1 p span {
  font-size: 13px;
  color: #2C2B2E;
  text-decoration: line-through;
}

#psc-grid1 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2C2B2E;
  margin: 0;
}

#psc-grid1 a {
  font-weight: 700;
  display: block;
  padding: 12px;
  text-align: center;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
  max-height: 45px;
}

.product-section-child--featured #psc-grid1 a {
  background-color: #1D4ED8;
  color: white;
  border: 1px solid #1D4ED8;
}

.product-section-child--featured #psc-grid1 a:hover {
  background-color: #1540b0;
  border-color: #1540b0;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.product-section-child:not(.product-section-child--featured) #psc-grid1 a {
  background-color: white;
  color: #1D4ED8;
  border: 1px solid #1D4ED8;
}

.product-section-child:not(.product-section-child--featured) #psc-grid1 a:hover {
  background-color: #F8FAFC;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.08);
}

.product-section-features {
  padding: 25px 30px 30px 30px;
  border-top: 1px solid #E2E8F0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-section-features h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1D4ED8;
  margin: 0 0 15px 0;
}

.product-section-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-section-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-section-features i {
  color: #3380F7;
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
}

.product-section-features p {
  font-size: 14px;
  color: #4B5563;
  margin: 0;
  line-height: 1.4;
}

/* psc-grid end [] */
/* Responsive Product Section */
@media (min-width: 1025px) and (max-width: 1240px) {
  .product-section-parent {
    gap: 12px;
  }

  .product-section-child {
    transform: scale(0.9);
  }

  .product-section-child:hover {
    transform: translateY(-5px) scale(0.93);
  }
}

@media (max-width: 1024px) {
  .product-section-parent {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    max-width: 800px;
    margin: 40px auto 0 auto;
    width: 100%;
    gap: 16px;
  }

  .product-section-child {
    transform: scale(0.95);
  }

  .product-section-child:hover {
    transform: translateY(-5px) scale(0.98);
  }
}

@media (max-width: 768px) {
  .product-section-parent {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0 auto;
    width: 100%;
  }

  .product-section-child {
    transform: none;
  }

  .product-section-child:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .product-section-title h1 {
    font-size: 28px;
  }

  .product-section-title h1 br {
    display: none;
  }
}

/* product section end */

/* product2 section start */

.katalog-section {
  padding: 80px 20px;
}

/* child1 */

.katalog-section-title {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.katalog-section-title h1 {
  font-size: 36px;
  color: #2C2B2E;
  margin-bottom: 12px;
}

.katalog-section-title p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
}

/* Child2 */
.katalog-section-parent {
  max-width: 1200px;
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;

}

@media (max-width: 1224px) {
  .katalog-section-parent {
    transform: scale(0.9);
  }

  .katalog-section {
    padding: 30px;
  }
}

@media (max-width: 1138px) {
  .katalog-section-parent {
    transform: scale(0.85);
  }
}



.katalog-section-child {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  margin: auto;
  padding: 0;
}


@media (max-width: 1024px) {
  .katalog-section-child {
    display: flex;
    flex-direction: column;
  }
}

#ksc-img-view {
  width: 400px;
}

.ksc-img-container {
  position: relative;
  width: 400px;
  height: 420px;
}

#ksc-img-main {
  width: 100%;
  height: 100%;
}


@media (max-width: 1024px) {
  .ksc-gallery-wrapper {
    margin: auto;
  }

  .ksc-img-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  #ksc-img-main {
    width: 100%;
    height: 100%;
  }
}


/* We are not gonna use it, but wee keep it */
/* .katalog-section-child:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(29, 78, 216, 0.1);
  border-color: #1D4ED8;
} */

/* Reset the text wrapper ul inside card to not inherit global white card styles */
.katalog-section-child>ul {
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  list-style: none;
}

.katalog-section-child h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.katalog-section-child p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0 0 16px 0;
}


#ksc-img-main,
#ksc-image-main {
  display: block;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #F8FAFC;
  position: relative;
}

#ksc-img-main img,
#ksc-image-main img {
  display: none;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin: 0;
  object-position: 0px -60px;
}

#ksc-img-main img.active,
#ksc-image-main img.active {
  display: block;
}

.ksc-gallery-arrow {
  display: none;
}

#ksc-img-view,
#ksc-image-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  margin-top: 20px;
}


#ksc-img-view img,
#ksc-image-view img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
}

/* When user hover to the child image */
#ksc-img-view img:hover,
#ksc-image-view img:hover {}

/* This is the block code when of 'katalog current image show automatic' */
#ksc-img-view img.active,
#ksc-image-view img.active {
  border-color: #1D4ED8;
  border-width: 2px;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

#ksc-img-view img.active:hover,
#ksc-image-view img.active:hover {
  border-color: #1D4ED8;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
}

#ksc-check {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 16px;
  margin: 0;
  color: #1D4ED8;
  background-color: #F8FAFC;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  min-height: 230px;
}

#ksc-check li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

#ksc-check li:last-child {
  margin-bottom: 0;
}

#ksc-check li i {
  color: #1D4ED8;
  font-size: 16px;
  flex-shrink: 0;
}

#ksc-check li p {
  font-size: 16px;
  color: #2C2B2E;
  margin: 0;
}

#ksc-harga {
  font-family: "Poppins", sans-serif;
}

#ksc-harga p {
  margin: 0;
  color: #3763B1;
}

#ksc-harga h1 {
  color: #3763B1;
}

#ksc-harga a {
  display: inline-block;
  background-color: #1D4ED8;
  text-align: center;
  color: white;
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
  width: 100%;
  margin-top: 20px;
  transition: .3s;
}

/* end katalog section */
/* start testmmoni video */

.testimoni-video-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  width: min(1200px, 100% - 3rem);
  margin: 60px auto;
  color: #2C2B2E;
}

/* end testimoni video */

/* ready section */
.ready-section {
  text-align: center;
  color: #2C2B2E;
}

.ready-section ul {
  background-color: #EBF2FE;
  padding: 40px;
  margin: 40px auto;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(1200px, 100% - 3rem);
}

.ready-section a {
  margin-top: 30px;
}

/* end ready section */

.testimoni-video-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 0;
  /* Prevents overflow and enables responsive width scaling inside flex items on mobile */
}

.testimoni-video-section h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #1E293B;
}

.testimoni-video-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
}

.ready-carousel {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.ready-carousel .carousel__arrow--left {
  left: -1.5rem;
}

.ready-carousel .carousel__arrow--right {
  right: -1.5rem;
}

@media (min-width: 992px) {
  .ready-carousel .carousel__arrow--left {
    left: -3.5rem;
  }

  .ready-carousel .carousel__arrow--right {
    right: -3.5rem;
  }
}

@media (max-width: 768px) {
  .ready-carousel .carousel__arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .ready-carousel .carousel__arrow--left {
    left: -10px;
  }

  .ready-carousel .carousel__arrow--right {
    right: -10px;
  }
}

.ready-carousel-track-wrap {
  overflow: hidden;
  border-radius: 12px;
}

.ready-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ready-carousel-track::-webkit-scrollbar {
  display: none;
}

.ready-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 10px;
  box-sizing: border-box;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .testimoni-video-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    width: 100%;
  }

  .testimoni-video-section h1 {
    font-size: 30px;
  }

  .testimoni-video-section ul {
    width: 100%;
    max-width: 100%;
  }

  .video-container {
    width: 100%;
  }
}

#ksc-harga a:hover {
  transform: scale(1.05);
}

@media (max-width: 1030px) {
  .product-section-parent {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 40px auto 0 auto;
  }

  .katalog-section-parent {
    grid-template-columns: 1fr;
    gap: 20px;
    transform: none;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Responsive product catalog gallery layout (overlay thumbnails over image) */
  .ksc-gallery-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }

  .ksc-img-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  #ksc-img-main,
  #ksc-image-main {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
    border-bottom: 0;
    margin: 0;
    z-index: 1;
  }

  #ksc-img-main::-webkit-scrollbar,
  #ksc-image-main::-webkit-scrollbar {
    display: none;
  }

  #ksc-img-main img,
  #ksc-image-main img {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
  }

  .ksc-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
    pointer-events: none;
  }

  .ksc-gallery-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    color: #1D4ED8;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .ksc-gallery-arrow:hover {
    background: #1D4ED8;
    color: white;
    border-color: #1D4ED8;
  }

  .ksc-gallery-arrow--left {
    left: 10px;
  }

  .ksc-gallery-arrow--right {
    right: 10px;
  }

  #ksc-img-view,
  #ksc-image-view {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 5;
    background: transparent;
    border: none;
    margin: 0;
    padding: 4px 4px 8px 4px;
    box-sizing: border-box;
  }

  #ksc-img-view::-webkit-scrollbar,
  #ksc-image-view::-webkit-scrollbar {
    display: none;
  }

  #ksc-img-view img,
  #ksc-image-view img {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.25s ease;
  }

  #ksc-img-view img.active,
  #ksc-image-view img.active {
    border-color: #2563EB;
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }
}

/* product2 section end */

@media (max-width: 768px) {
  .solusi-section-container {
    flex-direction: column;
    align-items: stretch;
  }

  .solusi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solusi-card {
    padding: 1.5rem;
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: #F8FAFC;
  border-radius: 32px;
  padding: 2rem 2.5rem;
  overflow: hidden;
  height: auto;
  min-height: 260px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
}

.feature-card__tag {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 0.25rem;
  /* sama seperti hero__tag */
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-card__title {
  font-size: clamp(18px, 1.8vw, var(--text-subtitle));
  font-weight: 800;
  color: #1C4BD1;
  margin-top: 0;
  margin-bottom: 0.75rem;
  /* sama seperti hero__title */
  line-height: 1.1;
}

.feature-card__text {
  font-size: clamp(14px, 1.2vw, var(--text-body));
  color: #475569;
  line-height: 1.5;
  /* sama seperti hero__lead */
  margin-bottom: 1rem;
  /* sama seperti hero__lead */
}

.feature-card__badge-4k {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.feature-card__badge-4k img {
  height: 130px;
  width: auto;
}

.feature-card__os-icons {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

.os-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.os-icon-box img {
  height: 96px;
}

.os-icon-box span {
  font-size: 15px;
  font-weight: 700;
  color: #64748B;
}

.testimonials {
  padding: 2rem 0 2.5rem;
  background: white;
  scroll-margin-top: 45px;
}

.testimonials__lead {
  text-align: center;
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 1.25rem;
}

.testimonials__lead span {
  font-weight: 700;
}

.carousel {
  position: relative;
}

.testimonials .carousel {
  max-width: 860px;
  margin: 0 auto;
}

.testimonials .carousel__track {
  padding: 0;
}

.carousel__track-wrap {
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.25rem;
  color: #1C4BD1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel__arrow:hover {
  background: #1C4BD1;
  color: white;
  border-color: #1C4BD1;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.carousel__arrow--left {
  left: -0.5rem;
}

.carousel__arrow--right {
  right: -0.5rem;
}

/*  */

@media (min-width: 992px) {
  .testimonials .carousel__arrow--left {
    left: -3rem;
  }

  .testimonials .carousel__arrow--right {
    right: -3rem;
  }
}



.phone-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  border: 3px solid #1a1a1a;
  box-shadow:
    0 0 0 2px #2d2d2d,
    0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  transition: all 0.3s ease;
}

/* Android: punch-hole camera — lingkaran kecil di tengah atas */
.phone-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #111;
  border-radius: 50%;
  border: 1px solid #333;
  z-index: 10;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Android: navigation bar — tiga titik/garis di bawah */
.phone-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  z-index: 10;
}

.phone-card img {
  width: 100%;
  height: auto;
  /* Tampilkan gambar penuh */
  display: block;
  object-fit: cover;
  /* Jangan crop, tampilkan semua isi */
  padding: 0;
  margin: 0;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}



.dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background: var(--primary);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.dot.active {
  background: #2563EB;
  width: 28px;
  transform: scale(1);
}

/* Promo strip */
.promo-strip {
  padding: 3rem 0;
  background: #C5D0FA;
  margin: 4rem 0;
}

.promo-strip__card {
  background: linear-gradient(90deg, #101c45 0%, #173d9f 50%, #4681f4 100%);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Decorative circle on the right */
.promo-strip__card::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.promo-strip__card::after {
  content: '';
  position: absolute;
  right: -15%;
  top: -30%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.promo-strip__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.promo-strip__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  /* Dipersempit agar icon dan teks sangat dekat */
}

.promo-strip__lightning {
  font-size: 56px;
  color: #FCD34D;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  margin-right: -4px;
  /* Menarik teks lebih dekat untuk mengimbangi whitespace emoji */
}

.promo-strip__label {
  font-size: 20px;
  font-weight: 800;
  color: #FCD34D;
  display: block;
  margin-bottom: 0px;
  /* Jarak sedikit agar tidak nabrak */
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-strip__main-title {
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin: 4px 0 0 0;
  /* Memberi jarak sedikit di atas agar teks turun */
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-strip__progress-box {
  max-width: 450px;
  width: 100%;
}

.promo-strip__bar {
  background: white;
  width: 100%;
  height: 24px;
  border-radius: 50px;
  position: relative;
  display: flex;
}

.promo-strip__fill {
  background: #2563EB;
  height: 100%;
  border-radius: 50px;
}

.promo-strip__text {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563EB;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  z-index: 3;
}

.promo-strip__center {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
  transform: translateY(-10px);
  /* Geser ke atas agar sejajar dengan judul di kiri */
}

.promo-strip__old {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}

.promo-strip__new {
  font-size: 40px;
  font-weight: 800;
  color: #FCD34D;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.promo-strip__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0 0;
}

.promo-strip__hint strong {
  color: white;
}

.promo-strip__action {
  position: relative;
  z-index: 2;
}

.promo-strip__action .btn--white-pill {
  background-color: #2563EB;
  color: white;
  border: none;
  font-weight: 700;
  padding: 10px 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
}

.promo-strip__action .btn--white-pill:hover {
  background-color: #1D4ED8;
  color: white;
}


/* Gallery */
.gallery {
  padding: 2rem 0 3rem;
  background: var(--white);
  scroll-margin-top: 45px;
}

.section-title--blue {
  color: #1A3A8A;
}

.gallery-carousel {
  position: relative;
}

.gallery-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.25rem;
  color: #1C4BD1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-carousel__arrow:hover {
  background: #1C4BD1;
  color: white;
  border-color: #1C4BD1;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.gallery-carousel__arrow--left {
  left: -0.5rem;
}

.gallery-carousel__arrow--right {
  right: -0.5rem;
}

.gallery__item {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 3/4;
  /* Diubah dari 1/1 agar gambar lebih tinggi (portrait) */
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CTA Banner Final */
.cta-banner {
  background: linear-gradient(180deg, #2563EB 0%, #0B1564 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: #1D4ED8;
  border-radius: 50%;
  z-index: 1;
}

.cta-banner__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.cta-banner__visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 2rem;
}

.cta-banner__main-img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}

.cta-banner__content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 4rem 0;
}

.cta-banner__title {
  font-size: 36px;
  font-weight: 800;
  color: #FFD700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 18px;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #E0E7FF;
}

.cta-banner__button {
  background: white;
  color: #2563EB;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
  width: max-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner__button i {
  font-size: 18px;
  color: #2563EB;
}

/* Footer */
.footer {
  padding: 6rem 0 2rem;
  background: white;
  color: #111827;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand-col .nav__logo {
  color: #2563EB;
  margin-bottom: 1.5rem;
}

.footer__info-item {
  margin-bottom: 2rem;
}

.footer__info-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111827;
  display: flex;
  align-items: center;
}

.footer__info-title i {
  margin-right: 10px;
}

.footer__info-item p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
}

.footer__bottom {
  padding-top: 2rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6B7280;
}

.footer__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 2px;
  background: #E5E7EB;
}



.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-links a {
  color: #6B7280;
  text-decoration: none;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-800);
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer__bottom {
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* Pastikan lebih tinggi dari header (999) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #F1F5F9;
  border-radius: 50%;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.modal__close:hover {
  background: #E2E8F0;
  transform: scale(1.1);
}

.promo-modal-panel {
  width: min(480px, calc(100% - 2rem));
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.promo-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #4B5563;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.promo-modal-close:hover {
  background: #F3F4F6;
  color: #111827;
  transform: scale(1.05);
}

.promo-modal-img {
  width: 100%;
  max-height: 55vh;
  object-fit: contain;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.promo-modal-btn {
  background: #2563EB;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  width: 100%;
  max-width: 380px;
  align-self: center;
}

.promo-modal-btn:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  color: white;
}

.modal__panel--lightbox {
  width: min(900px, 100%);
  padding: 1rem 1rem 1.25rem;
}

.lightbox__img {
  width: 100%;
  max-height: min(70vh, 560px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #0f172a;
}

.lightbox__download {
  position: absolute;
  bottom: 100px;
  /* Dipindah ke atas area thumbnail agar tidak menutupi */
  right: 1.5rem;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lightbox__download:hover {
  background: rgba(37, 99, 235, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.lightbox__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.lightbox__thumb {
  flex: 0 0 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.6;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity var(--transition), border-color var(--transition);
}

.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__thumb.is-active,
.lightbox__thumb:hover {
  opacity: 1;
  border-color: var(--blue-600);
}

body.modal-open {
  overflow: hidden;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* .whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
} */

.whatsapp-set-disable-text {
  position: fixed;
  bottom: 70px;
  right: 115px;
  transform: translateY(50%);
  background-color: white;
  color: #333;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
  line-height: 1.4;
  white-space: nowrap;
  /* pointer-events: none; set disable, Let clicks pass through */
}

.whatsapp-set-disable-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid white;
}

/* ==========================================================================
   RESPONSIVE LAYOUT (100% Mobile & Tablet)
   ========================================================================== */

/* Prevent Horizontal Scroll — gunakan clip, bukan hidden (hidden merusak position:fixed/sticky) */
html {
  overflow-x: clip;
}


/* Hide nav toggle on desktop by default */
.nav__toggle {
  display: none;
}

/* START WHY CONTAINER BLOCKS */
.why-container {
  padding: 1rem 1.5rem 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.why-container h1 {
  font-size: 36px;
}

.why-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.why-card-container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 30px;
  margin: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .why-card-container ul {
    grid-template-columns: repeat (2, 1fr);
    padding: 20px;
  }

}

@media (max-width: 768px) {
  .why-card-container ul {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}

.why-card-container ul img {
  max-width: 100%;
  border-radius: 20px;
  height: auto;
  transition: box-shadow .3s;
}

.why-card-container ul img:hover {
  box-shadow: 0px 0px 10px 5px #EBF2FE;
}

/* ENDS WHY CONTAINER BLOCKS */

/* STAART NAV KONSULTASI FOR MOBILE AND TABLET */

.disable-on-desktop {
  display: none !important;
}


/* Tablet (Max 991px) */
@media (max-width: 1120px) {

  .disable-on-desktop {
    display: block !important;
  }

  /* ENDS NAV KONSULTASI FOR MOBILE AND TABLET */


  /* Hide desktop CTA button on tablet */
  .btn--header {
    display: none;
  }

  /* Hamburger Menu visible on tablet */
  .nav__toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #1C4BD1;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 300;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .nav.container {
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    flex-wrap: nowrap;
  }

  /* Dropdown menu for tablet/mobile */
  .nav__menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    z-index: 998;
    text-align: center;
    display: flex;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
  }

  .nav__menu.show-menu {
    transform: translateY(0);
    visibility: visible;
  }

  .hero .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0 2rem;
    width: 100%;
  }

  .hero__grid,
  .cta-final__grid {
    grid-template-columns: minmax(0, 1fr);
    /* Cegah konten besar merusak layout grid */
    text-align: center;
    gap: 1rem;

    overflow: visible;
    display: flex;
    flex-direction: column-reverse;


  }

  .hero__actions,
  .hero__stats {
    display: flex;
    justify-content: center;
  }

  .hero__lead {
    text-align: center;
    font-size: 32px;
    margin-inline: auto;
  }

  .hero__monitor-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    order: -1;
    margin: 0 auto;
    overflow: visible;
  }

  .hero__title .line-1,
  .hero__title .line-2 {
    white-space: normal;
    /* Mencegah teks kepotong ke kanan di HP */
    display: inline;
  }

  .hero__monitor-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    /* Memperbesar gambar di HP dan menengahkan */
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__visual {
    order: 2;
    /* Pindahkan gambar ke bawah text */
    padding-top: 0;
  }

  .cta-banner__content {
    order: 1;
    /* Pindahkan text ke atas gambar */
    padding: 2rem 0 4rem;
    align-items: center;
  }

  .cta-banner__main-img {
    margin: 0 auto;
  }

  .cta-banner__button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px;
    padding: 12px 24px;
    margin: 0 auto;
    display: inline-flex;
  }

  .features {
    padding: 2rem 0 3rem;
  }

  .variants-container {
    padding: 1rem 1.5rem 0;
    border-radius: 24px;
  }

  .variant-seconds-label {
    overflow: hidden;
    white-space: nowrap;
  }

  .variant-seconds-label li {
    margin: 0;
    color: #2C2B2E;
    list-style: none !important;
    display: inline-block;
    align-items: center;
  }

  @media (max-width: 768px) {

    .variant-seconds-label h2,
    .variant-seconds-label li {
      font-size: 0.85rem;
    }
  }

  .variant-seconds-label h1 {
    border: 2px solid #1D4ED8;
    border-radius: 4px;
    padding: 2px 8px;
    width: fit-content;
  }

  .variant-seconds-label li {
    list-style: none !important;
  }



  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: auto;
    min-height: 200px;
  }

  .variant-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .variant-item {
    width: 100% !important;
    margin-right: 0 !important;
    align-items: center;
  }

  .v75 {

    width: 100% !important;
    /* Dikecilkan sesuai permintaan khusus HP */
  }

  .v75 .variant-img {
    width: 30% !important;
  }

  .v86 {
    width: 100% !important;
  }

  .v86 .variant-img {
    width: 40% !important;
  }

  .cta-banner__text {
    text-align: center;
  }

  .v98 {
    width: 100% !important;
    /* Dikecilkan sesuai permintaan khusus HP */
  }

  .v98 .variant-img {
    width: 50% !important;
  }

  .variant-label {
    font-size: 36px;
    align-self: flex-start !important;
    /* Geser 75" ke pojok kiri */
    text-align: left;
    padding: 0;
    display: none;
  }

  /* .v86 { -- im not using it, but i'll keep it
    margin-top: -2rem;
    /* Naikkan sedikit ke atas } */

  .v86 .variant-label {
    align-self: flex-end !important;
    /* Geser 86" ke pojok kanan */
    text-align: right;
    order: 2;
    /* Pindahkan teks 86" ke bawah gambar */
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .promo-strip__card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .promo-strip__progress-box {
    margin: 0 auto;
  }

  .gallery__item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {


  .features__lead {
    display: none;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }

  .whatsapp-set-disable-text {
    bottom: 45px;
    right: 85px;
    padding: 8px 12px;
    font-size: 12px;
    white-space: normal;
    max-width: 200px;
    text-align: center;
  }

  .variant-seconds-label {
    transform: scale(1.2);
  }

  /* === MOBILE NAV === */
  .nav.container {
    margin: 0;
    width: 100%;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
  }


  /* Logo: kiri — diperkecil */
  .nav__logo {
    flex-shrink: 0;
    max-width: 60%;
  }

  .nav__logo img {
    height: 38px !important;
    width: auto;
  }

  /* Sembunyikan tombol CTA desktop di mobile (sudah dicover di tablet) */

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0 1.5rem;
    width: 100%;
  }

  /* Hero — allow monitor image to overflow */
  .hero {
    /* padding: 80px 0 2rem; -- im not using it */
    overflow: visible;
    display: flex;
  }

  .hero .container {
    overflow: visible;
  }


  .hero__title {
    font-size: 36px;
    /* Diperkecil sedikit agar tulisan Meeting & Kelas muat */
    line-height: 1.3;
    /* Sedikit lebih lega */
    word-break: break-word;
    margin-bottom: 1rem;
  }

  .hero__title br {
    display: block;
  }

  .hero__title .line-1,
  .hero__title .line-2,
  .hero__title span span {
    white-space: normal !important;
    display: inline !important;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px;
    padding: 0.8rem 1.5rem;
    white-space: normal;
  }

  .hero__monitor-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    overflow: visible !important;
    margin: 30px auto 0 auto !important;
    padding: 0 !important;
    position: relative !important;
  }

  .hero__monitor-wrap picture {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero__monitor-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    left: auto !important;
    position: static !important;
    margin-top: 1.5rem !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)) !important;
    animation: floatSimpleMobile 6s ease-in-out infinite !important;
  }

  @keyframes floatSimpleMobile {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  /* Stats: wrap agar tidak overflow */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Diubah agar stat ke tengah di HP */
    gap: 1rem 2rem;
    overflow: hidden;
  }

  .hero__stat-val {
    font-size: 32px;
  }

  .variants-container {
    padding: 1.5rem 1.5rem 0;
    border-radius: 24px;
    overflow: hidden;
    /* Prevent child overlap from spilling out */
  }

  .v75 {
    width: 100% !important;
  }

  .v75 .variant-img {
    width: 55% !important;
  }

  .v86 {
    width: 100% !important;
  }

  .v86 .variant-img {
    width: 70% !important;
  }

  .v98 {
    width: 100% !important;
  }

  .v98 .variant-img {
    width: 85% !important;
  }

  .variant-seconds-label {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    white-space: nowrap;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .variant-seconds-label h1 {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .variant-seconds-label li {
    display: inline-flex;
    justify-content: flex-start;
    width: auto;
    white-space: normal;
    text-align: left;
    font-size: 0.8rem;
    margin-top: 0;
    line-height: 1.2;
  }

  .section-title,
  .section-title--white {
    font-size: 24px !important;
    /* Diperkecil agar tidak mendominasi layar HP */
    line-height: 1.4 !important;
    margin-bottom: 1.25rem;
  }

  .features__lead {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .features__title-blue {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .cta-banner__title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .cta-banner__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  /* Gallery */
  .gallery__item {
    flex: 0 0 calc(100%);
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    flex: 0 0 100%;
  }

  .carousel__track {
    padding: 0;
    gap: 0;
  }

  /* Promo */
  .promo-strip__card {
    padding: 2rem 1.5rem;
  }

  .promo-strip__new {
    font-size: 32px;
  }

  /* Promo Modal Responsive overrides */
  .promo-modal-panel {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 1rem;
    max-height: 85vh;
  }

  .promo-modal-img {
    max-height: 40vh;
    margin-bottom: 1rem;
  }

  .promo-modal-btn {
    padding: 12px 20px;
    font-size: 15px;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    align-self: center;
    white-space: normal;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 3rem 0;
  }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__bottom p {
    order: 2;
    /* Pindahkan copyright ke paling bawah */
  }

  .footer__bottom-links {
    order: 1;
    /* Pindahkan link ke atas copyright */
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .feature-card__badge-4k img,
  .footer__brand-col .nav__logo img {
    margin: 0 auto;
    /* Ketengahkan gambar 4K dan logo footer */
  }

  .feature-card__os-icons {
    justify-content: center;
    /* Ketengahkan logo Android & Windows */
  }

  .os-icon-box img {
    height: 64px;
    /* Perkecil ukuran ikon Android & Windows di HP */
  }
}

/* Badges flex wrap layout inherited from 768px */

/* Small Mobile (Max 425px) */
@media (max-width: 425px) {

  .variant-seconds-label {
    transform: scale(1);
  }

  .hero__title {
    font-size: 30px;
    /* Dikurangi agar kata Display dan Kelas tidak turun ke baris baru */
  }


  /* Picture width inherited from 768px */

  .hero__monitor-img {
    animation: floatUpDown425 3s ease-in-out infinite !important;
    /*transform-origin: center top !important;*/
    transform: translateY(20px);
  }

  @keyframes floatUpDown425 {
    0% {
      transform: scale(1.15) translateY(0);
    }

    50% {
      transform: scale(1.15) translateY(-18px);
    }

    100% {
      transform: scale(1.15) translateY(0);
    }
  }

  .v75 {
    width: 100% !important;
  }

  .v75 .variant-img {
    width: 75% !important;
  }

  .v86 {
    width: 100% !important;
  }

  .v86 .variant-img {
    width: 90% !important;
  }

  .v98 {
    width: 100% !important;
  }

  .v98 .variant-img {
    width: 100% !important;
  }

  .variant-seconds-label h1 {
    font-size: 0.9rem !important;
    padding: 2px 6px !important;
  }

  .variant-seconds-label li {
    font-size: 0.8rem !important;
  }
}

/* Premium Hover Effects (Only on devices that support hover) */
@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-10px);

  }

  /* .variant-item:hover .variant-img {
    transform: scale(1.05) rotate(1deg);
  } */

  .gallery__item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }

  .gallery__item:hover img {
    transform: scale(1.1);
  }

  /* .phone-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.8);
  } */

  .nav__logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
  }

  .footer__socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
  }

  .cta-banner__main-img:hover {
    transform: scale(1.03) translateY(-10px);
  }

  /* Shine effect for variants */
  .variant-item {
    position: relative;
    overflow: hidden;
  }

  .variant-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 10;
  }

  .variant-item:hover::after {
    left: 150%;
    transition: all 0.8s ease;
  }

  /* Improved Gallery Overlay */
  .gallery__item::after {
    content: '🔍 Lihat Gallery';
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .gallery__item:hover::after {
    opacity: 1;
  }

  /* WhatsApp Wobble disabled as requested */

  /* Section Title Underline */
  .section-title::after,
  .section-title--white::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    transition: width 0.4s ease;
  }

  .section-title--white::after {
    background: #FFD700;
  }

  section:hover .section-title::after,
  section:hover .section-title--white::after {
    width: 80px;
  }

  .promo-strip__card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.8);
  }

  .feature-card:hover .feature-card__title {
    color: #2563EB;
    transform: translateX(5px);
  }

  .feature-card__title {
    transition: all 0.3s ease;
  }

  .btn--header:hover {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
  }

  .hero__stat-item:hover {
    transform: scale(1.1) translateY(-2px);
  }

  .hero__stat-item:hover .hero__stat-val {
    color: #1D4ED8;
  }

  .hero__badges-img img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
  }

  .partner-item img {
    transition: all 0.3s ease;
    opacity: 1;
    /* Selalu tampilkan warna asli */
  }

  /* 
  Disable, this code make the partner logos got cropped, sorry
  -- algi */
  /* .partner-item:hover img {
    transform: scale(1.1);
    /* Tetap kasih efek zoom dikit biar hidup */

  .nav__toggle:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--primary);
  }

  .hero:hover .hero__monitor-img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
  }


  /* Disable because this is code make the partner logos got cropped, sorry
  -- algi
   */
  /* .partner-item:hover {
    animation: floatPartner 2s ease-in-out infinite;
  } */

  @keyframes floatPartner {

    0%,
    100% {
      transform: translateY(0) scale(1.1);
    }

    50% {
      transform: translateY(-8px) scale(1.1);
    }
  }

  .cta-banner__button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .feature-card:hover {
    border-color: var(--primary-light);
    background: #FFFFFF;
  }

  .variant-item .variant-img {
    padding: 30px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .whatsapp-set-disable-text {
    right: 80px;
    max-width: 160px;
  }
}

@media (max-width: 990px) {
  .DISABLE {
    display: none;
  }
}

@media (max-width: 1473px) {}

@media (max-width: 768px) {
  .whatsapp-set-disable-text {
    font-size: 11px;
  }
}

@media (max-width: 528px) {
  .brdisable1 {
    display: none;
  }
}

@media (max-width: 375px) {
  .variant-seconds-label {
    position: relative;
    left: -20px;
  }
}

@media (max-width: 520px) {
  .variant-seconds-label {
    transform: scale(.98);
  }
}

.sec-arr-img {
  margin: 0;
  height: 100%;

}

/* Responsive */

@media (max-width: 1024px) {
  .solusi-section-container {
    flex-direction: column;
  }

  .solusi-card {
    padding: 20px;
  }

  /*  */
  .solusi-section2-child2 {
    margin-top: 50px;
    flex-direction: column;
  }
}

@media (max-width: 425px) {
  .ready-section ul {
    padding: 20px;
  }

  .ready-section h1 {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .promo-modal-btn {
    transform: scale(.8)
  }
}

@media (max-width: 1120px) {
  .footer__main {
    display: flex;
    flex-direction: column;

    margin: 0;
    gap: 0;
  }
}

/* Premium Scroll-triggered Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered load effect for grid/list item siblings on desktop */
@media (min-width: 769px) {

  .solusi-grid .scroll-reveal:nth-child(2),
  .fitur-section2 .scroll-reveal:nth-child(even),
  .product-section-parent .scroll-reveal:nth-child(2),
  .katalog-section-parent .scroll-reveal:nth-child(2) {
    transition-delay: 0.15s;
  }

  .solusi-grid .scroll-reveal:nth-child(3),
  .fitur-section2 .scroll-reveal:nth-child(3n),
  .product-section-parent .scroll-reveal:nth-child(3),
  .katalog-section-parent .scroll-reveal:nth-child(3) {
    transition-delay: 0.3s;
  }

  .solusi-grid .scroll-reveal:nth-child(4) {
    transition-delay: 0.45s;
  }
}

/* for-mobile-pages Section default styling (hidden on desktop) */
.for-mobile-pages {
  display: none;
}

/* Optimized Lightweight Transitions for Mobile Screens to ensure 60FPS fluid scrolling */
@media (max-width: 768px) {
  .scroll-reveal {
    transform: translateY(10px);
    /* Less translate for zero lag */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    /* Simpler and faster transition */
  }

  .for-mobile-pages {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to left, #0F9BEA, #345DB5);
    padding: 60px 24px;
    text-align: center;
    color: white;
    box-sizing: border-box;
    gap: 20px;
    width: 100%;
  }

  .mobile-pages-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1.35;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }

  .mobile-pages-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 auto 10px auto;
    max-width: 340px;
  }

  .mobile-pages-video-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
  }

  .mobile-pages-video-container iframe,
  .mobile-pages-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
  }
}

.download-aplikasi-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  background: linear-gradient(to right, #1D4ED8, #1199E8);
  color: white;
  overflow: hidden;
  padding: 0;
}

.download-aplikasi-container ul:nth-child(1) {
  padding: 50px 0 50px 50px;
  margin: 0;
  background-color: transparent;
  color: white;
  max-width: 550px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 45px;
  transform: scale(clamp(0.85, calc(130vw / 1390px), 1.25));
  transform-origin: center center;
}

.download-aplikasi-container ul:nth-child(1) h1 {
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin: 0 0 16px 0;
  font-family: 'Poppins', sans-serif;
}

.download-aplikasi-container ul:nth-child(1) p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 28px 0;
  font-family: 'Poppins', sans-serif;
}

.download-aplikasi-btn {
  margin: 0;
}

/* Play Store Badge */
.playstore-badge {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  gap: 12px;
  transition: all 0.3s ease;
  width: fit-content;
  box-sizing: border-box;
}

.playstore-badge:hover {
  background-color: #111111;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.playstore-icon {
  width: 28px;
  height: auto;
  margin: 0;
}

.playstore-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.playstore-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.playstore-title {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
}

.download-aplikasi-container ul:nth-child(2) {
  padding: 0;
  margin: 0;
  display: flex;
  align-self: stretch;
  width: 45%;
  align-items: flex-end;
  justify-content: flex-end;
}

.download-aplikasi-container ul:nth-child(2) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  margin: 0;
}

@media (max-width: 1024px) {
  .download-aplikasi-container {
    padding: 0;
    gap: 20px;
  }

  .download-aplikasi-container ul:nth-child(1) {
    padding: 40px 0 40px 24px;
    max-width: 50%;
    align-items: flex-start;
    text-align: left;
  }

  .download-aplikasi-container ul:nth-child(1) h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .download-aplikasi-container ul:nth-child(1) p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .playstore-badge {
    padding: 8px 18px;
  }

  .playstore-icon {
    width: 24px;
  }

  .playstore-title {
    font-size: 16px;
  }

  .playstore-sub {
    font-size: 8px;
  }

  .download-aplikasi-container ul:nth-child(2) {
    width: 50%;
    align-self: stretch;
  }

  .download-aplikasi-container ul:nth-child(2) img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .download-aplikasi-container {
    flex-direction: column;

    gap: 32px;
    text-align: center;
  }

  .download-aplikasi-container ul:nth-child(1) {
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .download-aplikasi-container ul:nth-child(1) h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .download-aplikasi-container ul:nth-child(1) p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 10px;
  }

  .download-aplikasi-container ul:nth-child(1) br {
    display: none;
  }

  .download-aplikasi-btn {
    justify-content: center;
  }

  .playstore-badge {
    padding: 8px 20px;
  }

  .download-aplikasi-container ul:nth-child(2) {

    width: 100%;
  }

  .download-aplikasi-container ul:nth-child(2) img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 425px) {
  #psc-grid1 br {
    display: none;
  }

  #psc-grid1 h2 {
    font-size: 24px;
  }

  #psc-grid2 p {
    font-size: 14px;
  }
}

/* This is used for scroll function */
#beranda {
  scroll-margin-top: 30px;
}

#solusi {
  scroll-margin-top: 50px;
}

#fitur {
  scroll-margin-top: 40px;
}

#harga {
  scroll-margin-top: 90px;
}

#testimoni {
  scroll-margin-top: 50px;
}

@media (max-width: 1240px) {
  #psc-grid1 h2 {
    font-size: 22px;
  }
}