/* ==========================================================================
   HOMEPAGE (BERANDA) STYLES
   ========================================================================== */

.home-page {
  width: 100%;
  background: #FAFAFA;
  color: #333333;
  overflow-x: hidden;
}

/* Common Section Header Utilities */
.home-section-tag {
  display: inline-block;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 8px;
}

.home-section-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 34px;
  line-height: 44px;
  color: #061E4A;
  margin: 0 0 12px 0;
}

.home-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  margin-bottom: 16px;
}

.home-section-sub {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
  max-width: 640px;
  margin: 0;
}

/* SECTION 1: HERO BANNER (FIGMA REVAMP) */
.home-hero-sec {
  width: 100%;
  min-height: 670px;
  padding: 160px 0 100px 0;
  background-image: url('../img/home/hero-banner.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #F7F5F0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Rectangle 6104 Overlay (Figma Specs - Left Side Dark Blue Gradient) */
.home-hero-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background: linear-gradient(92deg, #051B42 0%, rgba(5, 27, 66, 0.88) 42%, rgba(5, 27, 66, 0.35) 68%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

.home-hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 666px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Hero Content Entrance & Exit Animations */
.home-hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-fade-in-active .home-hero-content > * {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-out-active .home-hero-content > * {
  opacity: 0;
  transform: translateY(-20px);
}

.anim-fade-in-active .home-hero-logo-box { transition-delay: 0.08s; }
.anim-fade-in-active .home-hero-badge { transition-delay: 0.16s; }
.anim-fade-in-active .home-hero-title { transition-delay: 0.24s; }
.anim-fade-in-active .home-hero-desc { transition-delay: 0.32s; }
.anim-fade-in-active .home-hero-btns { transition-delay: 0.4s; }

.home-hero-logo-box {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.home-hero-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: #F7F5F0;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.home-hero-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  color: #F7F5F0;
  margin: 0;
}

.home-hero-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #F7F5F0;
  margin: 0;
}

.home-hero-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.btn-home-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #B98227;
  border-radius: 4px;
  color: #FFFFFF;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 147px;
  height: 43px;
  box-sizing: border-box;
}

.btn-home-primary:hover {
  background: #9E6E1F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(185, 130, 39, 0.4);
}

.btn-home-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #F7F5F0;
  backdrop-filter: blur(5px);
  border-radius: 4px;
  color: #F7F5F0;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 137px;
  height: 43px;
  box-sizing: border-box;
}

.btn-home-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* SECTION 2: KATEGORI PRODUK (FIGMA REVAMP) */
.home-cat-sec {
  width: 100%;
  padding: 64px 0;
  background: #F2F4F7;
}

.home-cat-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-cat-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-in-active .home-cat-header {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-out-active .home-cat-header {
  opacity: 0;
  transform: translateY(-20px);
}

.home-cat-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-cat-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
}

.home-cat-main-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 0;
}

.home-cat-sub-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #606060;
  margin: 0;
}

.home-cat-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 1440px;
  padding-top: 10px;
  margin-top: -10px;
}

.home-cat-card {
  width: calc((100% - 96px) / 4);
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(35px);
  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: opacity, transform;
}

.anim-fade-in-active .home-cat-card {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-out-active .home-cat-card {
  opacity: 0;
  transform: translateY(-20px);
}

/* Staggered card entrance animation delays */
.anim-fade-in-active .home-cat-card:nth-child(1) { transition-delay: 0.05s; }
.anim-fade-in-active .home-cat-card:nth-child(2) { transition-delay: 0.1s; }
.anim-fade-in-active .home-cat-card:nth-child(3) { transition-delay: 0.15s; }
.anim-fade-in-active .home-cat-card:nth-child(4) { transition-delay: 0.2s; }
.anim-fade-in-active .home-cat-card:nth-child(5) { transition-delay: 0.25s; }
.anim-fade-in-active .home-cat-card:nth-child(6) { transition-delay: 0.3s; }
.anim-fade-in-active .home-cat-card:nth-child(7) { transition-delay: 0.35s; }
.anim-fade-in-active .home-cat-card:nth-child(8) { transition-delay: 0.4s; }
.anim-fade-in-active .home-cat-card:nth-child(9) { transition-delay: 0.45s; }
.anim-fade-in-active .home-cat-card:nth-child(10) { transition-delay: 0.5s; }
.anim-fade-in-active .home-cat-card:nth-child(11) { transition-delay: 0.55s; }

.home-cat-card:hover,
.home-cat-card.active {
  transform: translateY(-6px);
  transition-delay: 0s !important;
}

.home-cat-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #FFFFFF !important;
  border-radius: 8px;
  box-shadow: 0px 4px 24px rgba(60, 100, 177, 0.24);
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.home-cat-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background-color: #FFFFFF !important;
  transition: transform 0.35s ease;
}

.home-cat-card:hover .home-cat-img-box img,
.home-cat-card.active .home-cat-img-box img {
  transform: scale(1.08);
  transition-delay: 0s !important;
}

.home-cat-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  flex: 1;
}

.home-cat-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #333333;
  margin: 0;
}

.home-cat-card-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  transition: width 0.25s ease;
}

.home-cat-card:hover .home-cat-card-gold-bar,
.home-cat-card.active .home-cat-card-gold-bar {
  width: 100%;
  transition-delay: 0s !important;
}


/* SECTION 3: SEKILAS TENTANG PERUSAHAAN (FIGMA REVAMP) */
.home-about-sec {
  width: 100%;
  height: 505px;
  background: #F2F4F7;
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 3;
}

.home-about-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

/* Image Container on Left - Flush with Left Viewport Edge (Mentok Kiri, 0px) */
.home-about-img-wrapper {
  position: absolute;
  width: 55vw;
  max-width: 819px;
  height: 505px;
  left: 0px;
  top: 0px;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-about-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  object-fit: cover;
  object-position: center;
}

/* Rectangle 6111 - Gold Accent Rectangle */
.home-about-gold-accent {
  position: absolute;
  width: 547px;
  height: 307px;
  left: calc(55vw - 50px);
  top: calc(50% - 307px/2 + 38.37px);
  background: #B88327;
  z-index: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Div [what-we-do-item] - Main Navy Card (Overlaps worker image & extends beyond layout) */
.home-about-card {
  position: absolute;
  width: min(675px, 52vw);
  height: 316px;
  left: calc(55vw - 160px);
  top: calc(50% - 316px/2 + 14.87px);
  background: #061E4A;
  mix-blend-mode: normal;
  border: 1px solid rgba(3, 34, 27, 0.1);
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Entrance Animation States (Observer Triggered) */
.anim-fade-in-active .home-about-img-wrapper {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-in-active .home-about-gold-accent {
  opacity: 1;
  transform: translateX(0);
}

.anim-fade-in-active .home-about-card {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback visible state if no observer JS */
.home-about-sec:not(.anim-fade-in) .home-about-img-wrapper,
.home-about-sec:not(.anim-fade-in) .home-about-gold-accent,
.home-about-sec:not(.anim-fade-in) .home-about-card {
  opacity: 1;
  transform: none;
}

/* Frame 1618873436 - Text Content inside Navy Card */
.home-about-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0px;
  gap: 14px;
  width: 100%;
  max-width: 609px;
  height: 100%;
}

.home-about-title {
  width: 100%;
  max-width: 609px;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
  color: #F7F5F0;
  margin: 0;
}

.home-about-desc {
  width: 100%;
  max-width: 609px;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #F7F5F0;
  margin: 0;
}

/* SECTION 4: UGO WIPES FEATURED (FIGMA REVAMP - Frame 1618873348) */
.home-ugo-sec {
  width: 100%;
  min-height: 707px;
  background: url('../img/home/bg-ugo-wipes.png') no-repeat center center / cover !important;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 4;
}

/* Rectangle 6112 - Right Light Blue Accent Background */
.home-ugo-bg-accent {
  display: none;
}

.home-ugo-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.home-ugo-content {
  width: 100%;
  max-width: 549px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-ugo-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-ugo-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  margin-top: -12px;
}

.home-ugo-text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.home-ugo-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 0;
}

.home-ugo-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #606060;
  margin: 0;
}

/* Badges & Certificates Group (Frame 2147227921) */
.home-ugo-badges-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.home-ugo-badge-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ugo-shield-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ugo-badge-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #03225D;
}

.home-ugo-certs-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.ugo-cert-icon {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.ugo-cert-divider {
  width: 1px;
  height: 40px;
  background: #D2D2D2;
}

/* Buttons Group (Frame 2147227904) */
.home-ugo-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.btn-ugo-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 40px;
  background: #03225D;
  color: #FFFFFF;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.008em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-ugo-primary:hover {
  background: #061E4A;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(3, 34, 93, 0.3);
}

.btn-ugo-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(6, 30, 74, 0.5);
  color: #061E4A;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.008em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn-ugo-secondary:hover {
  background: rgba(6, 30, 74, 0.05);
  border-color: #061E4A;
  transform: translateY(-2px);
}

/* Right Image Column (image 870) */
.home-ugo-img-col {
  width: 611px;
  height: 547px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.home-ugo-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

/* SECTION 5: PRODUK POPULER SLIDER (FIGMA REVAMP) */
.home-products-sec {
  width: 100%;
  padding: 80px 0;
  background: #F8FAFC;
  position: relative;
  z-index: 5;
}

.home-products-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-products-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 40px;
}

.home-products-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-products-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  border-radius: 0px;
}

.home-products-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 0;
  text-align: center;
}

/* Category Filter Pills Row (Frame 1000004546) */
.home-products-filter-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
  padding-bottom: 0px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  cursor: grab;
  user-select: none;
}

.home-products-filter-wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.home-products-filter-wrapper.active-drag {
  cursor: grabbing;
}

.home-products-filter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  white-space: nowrap;
  min-width: max-content;
  margin: 0 auto;
}

.category-pill {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  height: 41px;
  background: transparent;
  border: 1px solid #D2D2D2;
  border-radius: 100px;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #525252;
  cursor: pointer;
  transition: all 0.25s ease;
}

.category-pill:hover {
  border-color: #061E4A;
  color: #061E4A;
  background: rgba(6, 30, 74, 0.03);
}

.category-pill.active {
  background: rgba(6, 30, 74, 0.05);
  border: 1px solid #061E4A;
  color: #061E4A;
  font-weight: 600;
}

/* Slider Track & Flanking Nav Arrows */
.home-products-slider-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #061E4A;
  color: #061E4A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(6, 30, 74, 0.08);
  z-index: 10;
}

.btn-slider-arrow:hover {
  background: #061E4A;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(6, 30, 74, 0.25);
  transform: scale(1.05);
}

.btn-slider-arrow.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 4px;
  margin: -16px -4px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.slider-viewport.active-drag {
  cursor: grabbing;
}

.slider-viewport img {
  user-drag: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.slider-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-card-item {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Bottom Centered "Lihat Semua Produk >" Pill Button */
.home-products-bottom-btn {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-lihat-semua-produk {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #98A9BD;
  border-radius: 100px;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #1E436F;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-lihat-semua-produk:hover {
  background: #061E4A;
  border-color: #061E4A;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(6, 30, 74, 0.2);
}

.btn-lihat-semua-produk svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-lihat-semua-produk:hover svg {
  transform: translateX(4px);
}

/* SECTION 6: SEKTOR INDUSTRI (FIGMA REVAMP) */
.home-industry-sec {
  width: 100%;
  padding: 80px 0;
  background: #F8FAFC;
  position: relative;
  z-index: 6;
}

.home-industry-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

.home-industry-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto 56px auto;
}

.home-industry-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-industry-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  border-radius: 0px;
}

.home-industry-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 10px;
  margin-top: -10px;
}

.industry-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover,
.industry-card.active {
  background: #FFFFFF;
  border: 1px solid #3C64B1;
  box-shadow: 0px 4px 24px rgba(60, 100, 177, 0.24);
  transform: translateY(-6px);
}

.industry-icon-wrapper {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 8px;
}

.industry-icon-img {
  max-width: 130px;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.industry-card:hover .industry-icon-img,
.industry-card.active .industry-icon-img {
  transform: scale(1.08);
}

.industry-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex: 1;
}

.industry-card-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
  transition: color 0.25s ease;
}

.industry-card:hover .industry-card-title,
.industry-card.active .industry-card-title {
  color: #1D3A72;
}

.industry-card-gold-bar {
  width: 80px;
  height: 1px;
  background: #B98227;
  border-radius: 0px;
  margin: 0 auto;
}

.industry-card-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #777777;
  margin: 0;
}

/* SECTION 7: DOKUMEN KESELAMATAN (MSDS FIGMA REVAMP) */
.home-msds-sec {
  width: 100%;
  padding: 80px 0;
  background: #FFFFFF;
  position: relative;
  z-index: 7;
}

.home-msds-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.home-msds-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.home-msds-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-msds-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  border-radius: 0px;
}

.home-msds-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 8px 0 0 0;
}

.home-msds-desc {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #606060;
  margin: 4px 0 0 0;
}

.home-msds-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.msds-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  gap: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.msds-card:hover {
  border-color: #3C64B1;
  box-shadow: 0px 4px 24px rgba(60, 100, 177, 0.24);
  transform: translateY(-2px);
}

.msds-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
}

.msds-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
}

.msds-sub {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #777777;
  margin: 0;
}

.msds-gold-accent {
  width: 45px;
  height: 1px;
  background: #B98227;
  border-radius: 0px;
  margin-top: 8px;
}

.btn-msds {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  min-width: 131px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(6, 30, 74, 0.5);
  border-radius: 4px;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.008em;
  color: #061E4A;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.msds-card:hover .btn-msds,
.btn-msds:hover {
  background: #03225D;
  border-color: #03225D;
  color: #FFFFFF;
  box-shadow: 0px 4px 14px rgba(3, 34, 93, 0.25);
}

/* SECTION 8: BERITA & ARTIKEL (FIGMA REVAMP) */
.home-articles-sec {
  width: 100%;
  padding: 64px 0 80px 0;
  background: #FFFFFF;
  position: relative;
  z-index: 8;
}

.home-articles-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

.home-articles-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.home-articles-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-articles-tag {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #092D61;
}

.home-articles-gold-bar {
  width: 80px;
  height: 2px;
  background: #B98227;
  border-radius: 0px;
}

.home-articles-title {
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: #333333;
  margin: 8px 0 0 0;
}

/* Button "Lihat Semua" Pill (Figma Export Spec) */
.btn-lihat-semua {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 9.62px;
  border: 1px solid #839AC2;
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-inter, 'Inter', sans-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1C2E56;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-lihat-semua:hover {
  background: #061E4A;
  border-color: #061E4A;
  color: #FFFFFF;
}

.btn-lihat-semua svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.btn-lihat-semua:hover svg {
  transform: translateX(4px);
}

.home-articles-slider-wrapper {
  position: relative;
  width: 100%;
}

.btn-article-arrow {
  display: none;
}

.article-slider-viewport {
  width: 100%;
  position: relative;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1440px) and (min-width: 1025px) {
  .home-hero-container,
  .home-cat-container,
  .home-ugo-container,
  .home-products-container,
  .home-industry-container,
  .home-msds-container,
  .home-articles-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .home-industry-grid {
    gap: 24px;
  }
  .home-msds-container {
    gap: 40px;
  }
  .home-about-sec {
    height: 480px;
  }
  .home-about-img-wrapper {
    width: 55vw;
    height: 480px;
  }
  .home-about-img {
    width: 65vw;
    height: 580px;
    top: -50px;
  }
  .home-about-gold-accent {
    left: calc(55vw - 40px);
    width: min(500px, 40vw);
    height: 280px;
    top: 90px;
  }
  .home-about-card {
    left: calc(55vw - 140px);
    top: 70px;
    width: min(640px, 50vw);
    height: auto;
    min-height: 316px;
    padding: 28px 32px;
  }
}

@media (max-width: 1024px) {
  .home-hero-container,
  .home-cat-container,
  .home-ugo-container,
  .home-products-container,
  .home-industry-container,
  .home-msds-container,
  .home-articles-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero-container,
  .home-ugo-container {
    flex-direction: column;
    gap: 32px;
  }

  .home-ugo-sec {
    min-height: auto;
    padding: 64px 0;
  }

  .home-ugo-img-col {
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto;
  }

  .home-ugo-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }

  .home-msds-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-about-sec {
    height: auto;
    padding: 48px 0;
  }
  .home-about-inner {
    padding: 0 24px;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .home-about-gold-accent {
    display: none;
  }
  .home-about-card {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 36px 28px;
    border-radius: 12px 12px 0 0;
  }
  .home-about-img-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    border-radius: 0 0 12px 12px;
  }
  .home-about-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .home-about-title {
    font-size: 26px;
    line-height: 36px;
  }
  .home-about-desc {
    font-size: 16px;
    line-height: 26px;
  }

  .home-hero-img-col {
    width: 100%;
    max-width: 100%;
  }

  .home-cat-grid {
    gap: 24px;
  }

  .home-cat-card {
    width: calc((100% - 24px) / 2);
  }

  .home-industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .slider-card-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: 0;
  }

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

@media (max-width: 768px) {
  .home-hero-sec::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: auto;
    transform: none;
    background: linear-gradient(180deg, rgba(5, 27, 66, 0.95) 0%, rgba(5, 27, 66, 0.75) 100%);
    opacity: 0.9;
  }
}

@media (max-width: 640px) {
  .home-hero-sec {
    padding-top: 110px;
  }

  .home-hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .home-hero-btns {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .btn-home-primary,
  .btn-home-secondary {
    flex: 1;
    width: 50%;
    min-width: 0;
    padding: 12px 10px;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
  }

  .home-cat-grid {
    gap: 20px;
  }

  .home-cat-card {
    width: 100%;
  }

  .home-industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-products-slider-wrapper {
    position: relative;
    width: 100%;
    display: block;
  }

  .home-products-slider-wrapper .btn-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #061E4A;
    box-shadow: 0 4px 14px rgba(6, 30, 74, 0.2);
  }

  .home-products-slider-wrapper .btn-slider-prev {
    left: -10px;
  }

  .home-products-slider-wrapper .btn-slider-next {
    right: -10px;
  }

  .home-products-slider-wrapper .slider-viewport {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
  }

  .home-products-slider-wrapper .slider-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0px;
  }

  .slider-card-item {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 2px;
  }

  .home-about-sec {
    padding: 32px 0;
  }
  .home-about-inner {
    padding: 0 16px;
  }
  .home-about-card {
    padding: 24px 20px;
    border-radius: 8px 8px 0 0;
  }
  .home-about-img-wrapper {
    height: 220px;
    border-radius: 0 0 8px 8px;
  }
  .home-about-title {
    font-size: 22px;
    line-height: 30px;
  }
  .home-about-desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* UGO Wipes Mobile Responsive Styles */
  .home-ugo-sec {
    padding: 40px 0;
  }

  .home-ugo-content {
    max-width: 100%;
  }

  .home-ugo-title {
    font-size: 24px;
    line-height: 34px;
  }

  .home-ugo-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .home-ugo-certs-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .home-ugo-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-ugo-primary,
  .btn-ugo-secondary {
    width: 100%;
  }

  .home-ugo-img-col {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .home-ugo-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
  }

  .msds-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-msds {
    width: 100%;
  }

  .home-articles-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 32px;
  }

  .home-articles-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  /* Mobile Article Slider Styles */
  .home-articles-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-article-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #061E4A;
    color: #061E4A;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(6, 30, 74, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .btn-article-prev {
    left: -14px;
  }

  .btn-article-next {
    right: -14px;
  }

  .btn-article-arrow:hover {
    background: #061E4A;
    color: #FFFFFF;
  }

  .btn-article-arrow.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
  }

  .article-slider-viewport {
    margin: 0 auto;
    overflow: hidden;
    padding: 12px 4px;
    margin-top: -12px;
    margin-bottom: -12px;
    position: relative;
  }

  .home-articles-sec .artikel-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    gap: 20px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .home-articles-sec .artikel-card {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
  }
}

/* PDF POPUP MODAL STYLES */
.pdf-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px);
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pdf-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pdf-modal-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 90vh;
  background: #1E293B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf-modal-overlay.active .pdf-modal-container {
  transform: scale(1);
}

.pdf-modal-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 30;
}

.pdf-modal-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  text-decoration: none;
  padding: 0;
  outline: none;
}

.pdf-modal-btn:hover {
  background: #B98227;
  border-color: #B98227;
  color: #FFFFFF;
  transform: scale(1.08);
}

.pdf-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #FFFFFF;
  display: block;
}

.pdf-fallback-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 32px;
  text-align: center;
  color: #F8FAFC;
  gap: 16px;
  background: #0F172A;
  font-family: var(--font-inter, 'Inter', sans-serif);
}

@media (max-width: 640px) {
  .pdf-modal-overlay {
    padding: 12px;
  }
  .pdf-modal-container {
    height: 94vh;
    border-radius: 8px;
  }
  .pdf-modal-actions {
    top: 8px;
    right: 8px;
  }
  .pdf-modal-btn {
    width: 36px;
    height: 36px;
  }
}

/* Certification Image Popup Modal */
.cert-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cert-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.cert-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cert-modal-overlay.active .cert-modal-container {
  transform: scale(1);
}

.cert-modal-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-modal-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.cert-modal-btn:hover {
  background: rgba(15, 23, 42, 0.95);
  color: #F59E0B;
  transform: scale(1.05);
}

.cert-modal-body {
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F172A;
  padding: 16px;
  box-sizing: border-box;
}

.cert-modal-img {
  max-width: 100%;
  height: auto;
  max-height: calc(90vh - 32px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .cert-modal-overlay {
    padding: 12px;
  }
  .cert-modal-container {
    max-height: 94vh;
    border-radius: 12px;
  }
  .cert-modal-actions {
    top: 10px;
    right: 10px;
  }
  .cert-modal-btn {
    width: 36px;
    height: 36px;
  }
  .cert-modal-body {
    padding: 8px;
  }
}

