: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: 'Plus Jakarta Sans', system-ui, sans-serif;
  --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;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  padding-top: 75px; /* Kompensasi header fixed */
  font-family: var(--font);
  font-size: 16px;
  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 */
}

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: 16px;
  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);
}

.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-left: 6rem;
  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;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__link {
  font-weight: 500;
  font-size: 16px;
  color: #4B5563;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav__link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.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: 6rem 0 0;
  background: #FFFFFF;
  /* Fallback */
  position: relative;
  overflow: visible;
}

.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-left: 6rem;
  margin-right: 6rem;
  max-width: none;
}

.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;
}

.hero__title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: #111827;
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.hero__title .line-1,
.hero__title .line-2 {
  display: inline-block;
  white-space: nowrap;
}

.hero__title span span {
  color: var(--primary);
}

.hero__lead {
  font-size: 19px;
  color: #4B5563;
  margin-bottom: 1.5rem;
  max-width: none;
  /* Allow manual breaks to control layout */
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
}

.hero__stat-val {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  margin-top: 10px;
}

.hero__badges-img {
  margin-top: 1rem;
  max-width: 100%;
}

.hero__badges-img img {
  height: 60px;
  /* Consistent height */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .hero__badges-img img {
    height: auto;
    width: 100%;
  }
}



@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}



.hero__monitor-wrap {
  position: absolute;
  bottom: -13rem;
  right: -2%;
  width: 61%;
  max-width: 1300px;
  z-index: 2;
  pointer-events: none;
}

.hero__monitor-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  animation: floatSimple 6s ease-in-out infinite;
}

@keyframes floatSimple {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Partners */
.partners {
  padding: 4rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners__label {
  text-align: center;
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 3rem;
}

.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;
}

.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: 70px;
  min-width: 100px;
  flex-shrink: 0;
}

.nav__logo img {
  height: 45px;
  width: auto;
  display: block;
}

.partner-item img {
  height: 70px;
  width: auto;
  min-width: 80px;
  object-fit: contain;
  opacity: 0.8;
  transition: var(--transition);
}

/* Individual partner logo sizes */
.partner-item--kemenkes img {
  height: 70px;
  min-width: 90px;
}

.partner-item--balkauniku img {
  height: 70px;
  min-width: 100px;
}

.partner-item--embasy img {
  height: 90px;
  min-width: 140px;
}

.partner-item--djp img {
  height: 70px;
  min-width: 90px;
}

.partner-item--rsud img {
  height: 90px;
  min-width: 120px;
}

.partner-item--astra img {
  height: 70px;
  min-width: 120px;
}

.partner-item--denso img {
  height: 120px;
  min-width: 150px;
}

.partner-item--hrs img {
  height: 70px;
  min-width: 100px;
}

.partner-item--smt img {
  height: 120px;
  min-width: 150px;
}

.partner-item--mega img {
  height: 90px;
  min-width: 120px;
}

.partner-item:hover img {
  opacity: 1;
}

.partner-text {
  font-size: 18px;
  font-weight: 800;
  color: #94A3B8;
  white-space: nowrap;
}

.features {
  padding: 6rem 0;
  background: #2563EB;
  color: white;
}

.features__tag {
  display: inline-block;
  background-color: #EFF6FF;
  color: #3B82F6;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111827;
}

.section-title span {
  color: #1C4BD1;
}

.section-title--white {
  color: white;
  margin-bottom: 5rem;
  text-align: center;
  font-size: 42px;
}

.section-title--white span {
  color: #FACC15;
}

.features {
  padding: 8rem 0;
  background: linear-gradient(180deg, #2563EB 0%, #0B1564 100%);
}

.variants-container {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 5rem 4rem 0;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}



.features__title-blue {
  font-size: 40px;
  font-weight: 800;
  color: #1C4BD1;
  margin-bottom: 1.5rem;
}

.features__lead {
  max-width: 850px;
  margin: 0 auto 4rem;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.variant-content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 400px;
  margin: 0 auto;
  max-width: 1100px;
}

.variant-item {
  position: absolute;
  bottom: 0;
}

.v75 {
  left: 2%;
  width: 52%;
  z-index: 1;
}

.v86 {
  right: 2%;
  width: 62%;
  z-index: 2;
}

.variant-label {
  position: absolute;
  top: -80px;
  font-size: 56px;
  font-weight: 800;
  color: #1C4BD1;
  opacity: 1;
}

.v75 .variant-label {
  left: 1%;
}

.v86 .variant-label {
  right: 1%;
}

.variant-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: #F8FAFC;
  border-radius: 40px;
  padding: 3.5rem;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.feature-card__content {
  display: flex;
  flex-direction: column;
}

.feature-card__tag {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-card__title {
  font-size: 36px;
  font-weight: 800;
  color: #1C4BD1;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.feature-card__text {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.feature-card__badge-4k {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.feature-card__badge-4k img {
  height: 120px;
  width: auto;
}

.feature-card__os-icons {
  display: flex;
  gap: 2.5rem;
  margin-top: auto;
}

.os-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.os-icon-box img {
  height: 76px;
}

.os-icon-box span {
  font-size: 15px;
  font-weight: 700;
  color: #64748B;
}

.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials__lead {
  text-align: center;
  font-size: 18px;
  color: #4B5563;
  margin-bottom: 4rem;
}

.testimonials__lead span {
  font-weight: 700;
}

.carousel {
  position: relative;
}

.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;
}

.phone-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid #2a2a2a;
  box-shadow:
    0 0 0 2px #111,
    0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Dynamic island / notch */
.phone-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 14px;
  z-index: 5;
}

/* Home bar / bottom indicator */
.phone-card::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  z-index: 5;
}

.phone-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 36px;
  padding: 10px 0;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}



.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E7EB;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: #2563EB;
}

/* 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;
}

/* 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;
  gap: 1rem;
}

.promo-strip__lightning {
  font-size: 44px;
  color: #FCD34D;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.promo-strip__label {
  font-size: 20px;
  font-weight: 800;
  color: #FCD34D;
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-strip__main-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-strip__progress-box {
  max-width: 300px;
  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.15rem;
  position: relative;
  z-index: 2;
}

.promo-strip__old {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.promo-strip__new {
  font-size: 40px;
  font-weight: 800;
  color: #FCD34D;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.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: 6rem 0;
  background: var(--white);
}

.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;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* 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: 42px;
  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: 50px;
  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: 200;
  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);
  }
}

.promo-modal-panel {
  width: min(650px, 100%);
  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: 2rem;
  right: 2rem;
  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%;
  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: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  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);
}

.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: 1rem;
   right: 1rem;
   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);
 }

 .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);
}

/* ==========================================================================
   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;
}

/* Tablet (Max 991px) */
@media (max-width: 991px) {
  .nav.container {
    margin-left: 0;
    width: 100%;
    padding: 0 2rem;
  }

  .hero .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0 2rem;
  }

  .hero__grid,
  .cta-final__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero__visual {
    order: -1;
    /* Image above text */
  }

  .hero__content {
    margin: 0 auto;
    padding-right: 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image-wrapper {
    margin: 0 auto;
    max-width: 80%;
  }

  .features {
    padding: 6rem 0;
  }

  .variants-container {
    padding: 4rem 2rem 0;
    border-radius: 32px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: auto;
    min-height: 480px;
  }

  .variant-content {
    height: 400px;
  }

  .variant-label {
    font-size: 48px;
    top: -60px;
  }

  .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) {

  /* WhatsApp float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }

  /* === 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; /* diperkecil dari 70px */
    width: auto;
  }

  /* Hamburger: pojok kanan, tanpa border/box */
  .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;
  }

  /* Sembunyikan tombol CTA desktop di mobile */
  .btn--header { display: none; }

  /* Dropdown menu */
  .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; /* Tepat di bawah header */
    text-align: center;
    display: flex;
    /* Hidden via transform */
    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;
  }

  .btn--header {
    display: none;
  }

  .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;
  }

  /* Hero — fix overflow */
  .hero {
    padding: 80px 0 2rem;
    overflow: hidden;
  }
  .hero .container,
  .hero__grid {
    overflow: hidden;
  }
  .hero__title {
    font-size: 30px;
    line-height: 1.2;
    word-break: break-word;
  }
  .hero__lead {
    font-size: 14px;
    word-break: break-word;
  }
  .hero__actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Stats: wrap agar tidak overflow */
  .hero__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
    overflow: hidden;
  }
  .hero__stat-val {
    font-size: 32px;
  }

  .variants-container {
    padding: 3rem 1.5rem 0;
    border-radius: 24px;
    overflow: hidden;
    /* Prevent child overlap from spilling out */
  }

  .features__title-blue {
    font-size: 28px;
  }

  .variant-content {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .variant-item {
    position: relative;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }

  .variant-label {
    position: static;
    font-size: 40px;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
  }

  /* Gallery */
  .gallery__item {
    flex: 0 0 calc(100%);
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Promo */
  .promo-strip__card {
    padding: 2rem 1.5rem;
  }

  .promo-strip__new {
    font-size: 32px;
  }

  /* 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-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}