/* ==========================================================
   PT. KISBIOKIM MEDIKA LABORATORI - DESIGN SYSTEM
   Theme: Professional, Soft Glassmorphism, Precision Lab
   Colors: #3957ed (Dark Blue), #80c8f6 (Light Blue), #e5e5e5 (Soft Gray/White)
   Fonts: Montserrat (Headings) & Roboto (Body)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Brand Gradient Colors */
  --primary-dark: #1b33b8;
  --primary: #3957ed;
  --primary-light: #80c8f6;
  --primary-soft: #e0f2fe;
  --accent-soft: #e5e5e5;
  --accent-cyan: #06b6d4;
  --bg-gradient: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 50%, #f5f9fe 100%);
  --hero-gradient: linear-gradient(135deg, #3957ed 0%, #2041db 40%, #80c8f6 100%);
  --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.7) 100%);

  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-hover: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-border-subtle: rgba(128, 200, 246, 0.35);
  --glass-shadow: 0 10px 30px -5px rgba(57, 87, 237, 0.08), 0 0 1px 1px rgba(255, 255, 255, 0.6);
  --glass-shadow-hover: 0 20px 40px -8px rgba(57, 87, 237, 0.16), 0 0 1px 1px rgba(128, 200, 246, 0.8);
  --glass-blur: blur(14px);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Neutral Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-page: #f4f8fc;
  --border-color: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;

  /* Sizing & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Orbs for Glass Reflection */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(128, 200, 246, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 87, 237, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism System Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--glass-border-subtle);
  box-shadow: var(--glass-shadow-hover);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  padding: 24px;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(128, 200, 246, 0.6);
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(57, 87, 237, 0.12);
  color: var(--primary);
  border: 1px solid rgba(57, 87, 237, 0.25);
}

.badge-cyan {
  background: rgba(128, 200, 246, 0.2);
  color: #0369a1;
  border: 1px solid rgba(128, 200, 246, 0.4);
}

.badge-success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2947d4 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(57, 87, 237, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2544db 0%, #1a32aa 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(57, 87, 237, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 87, 237, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #0d6e63 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* ==========================================================
   TOPBAR & HEADER
   ========================================================== */
.topbar {
  background: rgba(15, 23, 42, 0.95);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-links a {
  color: #94a3b8;
  font-size: 0.8rem;
  transition: var(--transition);
}

.topbar-links a:hover {
  color: var(--primary-light);
}

/* Sticky Floating Glass Navbar (Sirclo Style Pill) */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(57, 87, 237, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.site-header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(57, 87, 237, 0.14);
  border-color: rgba(128, 200, 246, 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* .brand-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(57, 87, 237, 0.12);
  border: 1px solid rgba(128, 200, 246, 0.4);
  overflow: hidden;
} */

.brand-logo-img {
  max-height: 38px;
  max-width: 38px;
  object-fit: contain;
  display: block;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(57, 87, 237, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(57, 87, 237, 0.06);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(57, 87, 237, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  border: none;
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.nav-wa-btn:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #0d6e63 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.nav-wa-btn i {
  font-size: 1.15rem;
  line-height: 1;
}

.cart-btn-trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.cart-btn-trigger:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-light);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(57, 87, 237, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================
   HERO SECTION - Full-bleed Photo Right, Text Left
   ========================================================== */
.hero-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-gradient);
  display: flex;
  align-items: stretch;
}

/* Full-width photo fills right half via absolute positioning */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../hero-section.jpeg') right center / cover no-repeat;
  z-index: 0;
}

/* White fade gradient: opaque left → transparent right */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #f4f8fc 0%,
      #f4f8fc 48%,
      rgba(244, 248, 252, 0.88) 58%,
      rgba(244, 248, 252, 0.4) 72%,
      rgba(244, 248, 252, 0.05) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-photo-wrap {
  /* invisible spacer - image is CSS background */
  flex: 1;
  min-height: 400px;
  /* pointer events pass through */
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 55%;
  max-width: 620px;
  padding: 0;
  flex-shrink: 0;
}

.hero-tag {
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: #0b193d;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.08rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(203, 213, 225, 0.6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

/* Remove old card styles, keep for any legacy usage */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Legacy card classes (kept for compatibility) */
.hero-main-card {
  display: none;
  /* hidden - replaced by photo background */
}

.hero-img-wrap img {
  width: 100%;
  height: 270px;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(31, 38, 135, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.f-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.f-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.f-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================
   PARTNER BRANDS MARQUEE (LEFT TO RIGHT CONTINUOUS LOOP)
   ========================================================== */
.brands-strip {
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.75);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 60px;
  overflow: hidden;
}

.brands-strip-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px;
}

@keyframes marqueeLeftToRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.brands-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  padding: 16px 0;
  margin: -16px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 12px 0;
  animation: marqueeLeftToRight 28s linear infinite;
  will-change: transform;
}

.brands-marquee-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.brand-item img {
  filter: grayscale(100%);
  opacity: 0.68;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-item:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(57, 87, 237, 0.22);
  z-index: 50;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

/* ==========================================================
   SECTION COMMON HEADINGS
   ========================================================== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-header .badge-pill {
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 16px;
  color: #0b193d;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================
   ABOUT & HISTORY SECTION (HOME)
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  padding: 24px;
  background: linear-gradient(145deg, #ffffff 0%, rgba(240, 249, 255, 0.8) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 30px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  border-radius: 2px;
}

/* Animated Vision & History Box */
.vision-glass-box {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.7) 100%);
  border: 1.5px solid rgba(128, 200, 246, 0.6);
  box-shadow: 0 16px 40px rgba(57, 87, 237, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  padding: 36px;
}

.vision-glass-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 87, 237, 0.06) 0%, transparent 60%);
  animation: rotateVisionGlow 14s linear infinite;
  pointer-events: none;
}

@keyframes rotateVisionGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.timeline-item {
  position: relative;
  transition: var(--transition);
  padding: 10px 14px;
  border-radius: 12px;
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(57, 87, 237, 0.08);
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 14px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(57, 87, 237, 0.15);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(57, 87, 237, 0.25);
  transform: scale(1.15);
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-body);
}

/* ==========================================================
   CERTIFICATIONS & REGULATORY COMPLIANCE (HOME)
   ========================================================== */
.certifications-section {
  padding: 85px 0 95px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef5fc 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.cert-slots-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .cert-slots-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.cert-slot-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cert-slot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 87, 237, 0.4);
  box-shadow: 0 20px 45px rgba(57, 87, 237, 0.12);
}

.cert-slot-top-badge {
  padding: 12px 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.badge-parent-company {
  background: linear-gradient(90deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
}

.badge-subsidiary-company {
  background: linear-gradient(90deg, #ecfdf5 0%, #d1fae5 100%);
  color: #047857;
}

.cert-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #1e40af;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cert-status-badge.status-kan {
  color: #047857;
}

.cert-preview-frame {
  position: relative;
  background: #f1f5f9;
  overflow: hidden;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
}

.cert-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.cert-slot-card:hover .cert-preview-img {
  transform: scale(1.04);
}

.cert-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 61, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  gap: 8px;
}

.cert-preview-frame:hover .cert-preview-overlay {
  opacity: 1;
}

.cert-zoom-btn {
  background: #ffffff;
  color: #0b193d;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.cert-preview-frame:hover .cert-zoom-btn {
  transform: scale(1.05);
}

.cert-slot-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cert-slot-header {
  margin-bottom: 14px;
}

.cert-issuer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cert-slot-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b193d;
  line-height: 1.3;
  margin-bottom: 6px;
}

.cert-slot-entity {
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cert-slot-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
}

.cert-scope-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 22px;
}

.cert-scope-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cert-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-scope-list li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.cert-scope-list li i {
  color: #059669;
  margin-top: 2px;
  flex-shrink: 0;
}

.cert-slot-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.cert-consult-banner {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.cert-consult-text {
  max-width: 720px;
}

.cert-consult-text h4 {
  font-size: 1.15rem;
  font-weight: 750;
  color: #0b193d;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-consult-text p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================
   INTERACTIVE CERTIFICATE LIGHTBOX MODAL
   ========================================================== */
.cert-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 61, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: certModalFadeIn 0.25s ease forwards;
}

@keyframes certModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cert-modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: certModalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes certModalPop {
  from {
    transform: scale(0.94);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cert-modal-header {
  padding: 18px 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cert-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b193d;
  line-height: 1.3;
}

.cert-modal-sub {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.cert-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cert-modal-close:hover {
  color: #0b193d;
  background: #e2e8f0;
}

.cert-modal-body {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.cert-modal-fullimg {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cert-modal-footer {
  padding: 16px 24px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cert-modal-footnote {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================
   PARAGON-INSPIRED BRANDS SHOWCASE (CUTOUT & PARALLAX)
   ========================================================== */
.paragon-brand-hero {
  position: relative;
  background: radial-gradient(circle at 50% 20%, #1e3a8a 0%, #0b193d 70%, #060e24 100%);
  color: #ffffff;
  padding: 80px 0 120px 0;
  overflow: hidden;
  min-height: 480px;
}

.paragon-floating-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-science-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  will-change: transform;
}

.science-orb-1 {
  width: 400px;
  height: 400px;
  background: #3957ed;
  top: -80px;
  left: -100px;
}

.science-orb-2 {
  width: 360px;
  height: 360px;
  background: #06b6d4;
  bottom: 20px;
  right: -80px;
}

.floating-icon-item {
  position: absolute;
  color: rgba(255, 255, 255, 0.16);
  font-size: 3rem;
  will-change: transform;
  pointer-events: none;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-24px) rotate(8deg);
  }
}

.floating-icon-1 {
  top: 18%;
  left: 8%;
  font-size: 4.5rem;
  animation-delay: 0s;
}

.floating-icon-2 {
  top: 22%;
  right: 10%;
  font-size: 3.8rem;
  animation-delay: 1.5s;
}

.floating-icon-3 {
  bottom: 25%;
  left: 14%;
  font-size: 3.2rem;
  animation-delay: 3s;
}

.floating-icon-4 {
  bottom: 20%;
  right: 20%;
  font-size: 4.2rem;
  animation-delay: 2.2s;
}

/* The Cutout Window ("Web Bolong") */
.paragon-cutout-stage {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: 90px;
}

.cutout-aperture {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 36px 36px 24px 24px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25), 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  padding: 48px 36px;
  position: relative;
}

.cutout-aperture-window {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 40px auto;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(57, 87, 237, 0.08) 0%, rgba(2, 132, 199, 0.03) 100%);
  border: 1.5px dashed rgba(57, 87, 237, 0.25);
  padding: 24px;
  text-align: center;
  position: relative;
}

.brand-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.brand-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.brand-filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  background: #ffffff;
}

.brand-filter-chip.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(57, 87, 237, 0.35);
}

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

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

/* Staggered Brand Cards */
.paragon-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.paragon-brand-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.paragon-brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 45px rgba(57, 87, 237, 0.15);
}

.brand-card-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.brand-flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
}

.brand-logo-frame {
  height: 100px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.paragon-brand-card:hover .brand-logo-frame {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}

.brand-logo-frame img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.brand-card-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b193d;
  margin-bottom: 10px;
  line-height: 1.3;
}

.brand-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.brand-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.brand-tag-chip {
  font-size: 0.72rem;
  color: #475569;
  background: #f1f5f9;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.brand-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: auto;
}

/* ==========================================================
   3 BUSINESS SECTORS
   ========================================================== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sector-card {
  padding: 30px 24px;
  text-align: left;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sector-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(57, 87, 237, 0.1) 0%, rgba(128, 200, 246, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
}

.sector-card:hover .sector-icon-wrap {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.sector-name {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.sector-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================
   PRODUCT CATALOG (E-COMMERCE STYLE)
   ========================================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filter Sidebar (Clean Sticky without overflow glitch) */
.filter-sidebar {
  position: sticky;
  top: 85px;
  padding: 24px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 87, 237, 0.3) transparent;
}

.filter-group {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.filter-checkbox-label:hover {
  color: var(--primary);
}

.filter-checkbox-label input[type="radio"],
.filter-checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Product Search Bar */
.search-form {
  position: relative;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(57, 87, 237, 0.12);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* ==========================================================
   CATALOG FILTER BAR & FORM CONTROLS
   ========================================================== */
.catalog-filter-card {
  padding: 22px 24px;
  border-radius: 16px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.catalog-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: flex-end;
}

.catalog-filter-col {
  width: 100%;
}

.catalog-filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.catalog-select-box {
  position: relative;
  width: 100%;
}

.catalog-select-box select {
  width: 100%;
  height: 46px;
  padding: 10px 38px 10px 14px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-select-box select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 87, 237, 0.15);
}

.catalog-select-box .select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 0.95rem;
}

.catalog-search-box {
  display: flex;
  gap: 8px;
  width: 100%;
}

.catalog-search-box input {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 87, 237, 0.15);
}

.catalog-search-box .btn-search {
  height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(128, 200, 246, 0.8);
  box-shadow: var(--glass-shadow-hover);
}

.product-badge-top {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.product-img-container {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.product-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img-container img {
  transform: scale(1.08);
}

.product-brand-tag {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a {
  color: inherit;
}

.product-name a:hover {
  color: var(--primary);
}

.product-short-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 14px;
}

.product-price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-price-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-variants-pill {
  font-size: 0.75rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

/* ==========================================================
   PRODUCT DETAIL PAGE & INTERACTIVE VARIANT SELECTOR
   ========================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.product-gallery-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  text-align: center;
}

.gallery-main-view {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gallery-main-view img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.variant-selector-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
}

.variant-label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.variant-buttons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-btn {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.variant-btn:hover {
  border-color: var(--primary-light);
  background: var(--primary-soft);
}

.variant-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(57, 87, 237, 0.3);
}

.active-variant-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.order-actions-row {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Tabs */
.tab-container {
  margin-top: 50px;
}

.tab-nav {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr:nth-child(even) {
  background: rgba(241, 245, 249, 0.6);
}

.specs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}

.specs-table td:first-child {
  font-weight: 600;
  width: 35%;
  color: var(--text-dark);
}

/* ==========================================================
   BRANDS SHOWCASE
   ========================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.brand-showcase-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.brand-showcase-logo {
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-showcase-logo img {
  max-height: 100%;
  max-width: 180px;
  object-fit: contain;
}

.brand-country-badge {
  margin-bottom: 14px;
}

.brand-showcase-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ==========================================================
   BLOG / ARTICLES
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.blog-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-summary {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ==========================================================
   FEATURED ARTICLE & BLOG DETAIL
   ========================================================== */
.featured-blog-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
  margin-bottom: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.featured-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11, 25, 61, 0.12);
}

.featured-blog-img-wrap {
  height: 380px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.featured-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover .featured-blog-img-wrap img {
  transform: scale(1.05);
}

.featured-blog-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.featured-blog-title {
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #0b193d;
  font-weight: 700;
}

.featured-blog-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.featured-blog-title a:hover {
  color: var(--primary);
}

.featured-blog-summary {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.featured-blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  gap: 14px;
}

/* Blog Detail Page */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
}

.blog-detail-article {
  padding: 40px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.blog-meta-item {
  font-size: 0.85rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.blog-detail-title {
  font-size: 2.2rem;
  color: #0b193d;
  margin-bottom: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.blog-detail-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--glass-shadow);
  background: #f8fafc;
  max-height: 440px;
}

.blog-detail-img-wrap img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   CONTACT PAGE & MULTI-BRANCH
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.branch-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.branch-card {
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  background: #ffffff;
}

.branch-card.is-primary {
  border: 1.5px solid var(--primary-light);
  background: linear-gradient(145deg, #ffffff 0%, rgba(224, 242, 254, 0.4) 100%);
}

.branch-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.branch-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.branch-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.branch-info-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
}

/* Contact Form */
.glass-form {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 87, 237, 0.15);
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Map Container */
.map-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   CART INQUIRY DRAWER (SLIDE-OVER)
   ========================================================== */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}

.cart-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 6px;
  border: 1px solid var(--border-color);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 0.95rem;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: rgba(248, 250, 252, 0.9);
}

/* ==========================================================
   FLOATING WHATSAPP WIDGET
   ========================================================== */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.wa-popup-box {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 100;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  display: none;
  animation: popIn 0.3s ease;
}

.wa-popup-box.active {
  display: block;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

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

.wa-popup-header {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #ffffff;
  padding: 16px 20px;
}

.wa-popup-header h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.wa-popup-header p {
  font-size: 0.78rem;
  opacity: 0.88;
}

.wa-popup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-branch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.wa-branch-item:hover {
  background: #e0f2fe;
  border-color: var(--primary-light);
  color: var(--primary);
}

/* ==========================================================
   FOOTER (MODERN BALANCED 3-COLUMN LAYOUT)
   ========================================================== */
.site-footer {
  background: linear-gradient(180deg, #0b152d 0%, #060c1d 100%);
  color: #94a3b8;
  padding: 76px 0 32px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.05fr 1.35fr;
  gap: 48px;
  margin-bottom: 50px;
  align-items: start;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-logo-wrap {
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.footer-brand-logo {
  max-height: 38px;
  max-width: 44px;
  object-fit: contain;
  display: block;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
}

.footer-brand-title {
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #94a3b8;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: #bae6fd;
  transition: all 0.25s ease;
}

.footer-badge-pill:hover {
  background: rgba(14, 165, 233, 0.16);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-1px);
}

.footer-badge-pill i {
  color: #38bdf8;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.footer-links-list a i {
  font-size: 0.75rem;
  color: #64748b;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links-list a:hover i {
  color: #38bdf8;
  transform: translateX(2px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.12);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #38bdf8;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.social-btn.social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(214, 36, 159, 0.35);
}

.social-btn.social-tiktok:hover {
  background: #000000;
  border-color: #00f2fe;
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.3);
}

.social-btn.social-shopee:hover {
  background: #ee4d2d;
  border-color: #ee4d2d;
  box-shadow: 0 6px 18px rgba(238, 77, 45, 0.35);
}

.social-btn.social-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.35);
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom strong {
  color: #cbd5e1;
  font-weight: 600;
}

/* ==========================================================
   HOMEPAGE SEAMLESS NAVBAR & HERO BLEND (DESKTOP)
   ========================================================== */
.is-home-page .site-header {
  margin-bottom: -72px;
  position: sticky;
  top: 16px;
  z-index: 100;
}

.is-home-page .hero-section {
  padding-top: 72px;
}

.is-home-page .hero-inner {
  padding-top: 60px;
  padding-bottom: 70px;
}

/* ==========================================================
   NEW USP / KEUNGGULAN SECTION (AFTER ABOUT US)
   ========================================================== */
.usp-features-section {
  position: relative;
  z-index: 2;
}

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

.usp-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 32px rgba(57, 87, 237, 0.08);
  transition: all 0.35s ease;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(57, 87, 237, 0.16);
  border-color: rgba(128, 200, 246, 0.7);
}

.usp-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.usp-icon-blue {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #ffffff;
}

.usp-icon-cyan {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #ffffff;
}

.usp-icon-green {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
}

.usp-badge-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.usp-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b193d;
  margin-bottom: 4px;
}

.usp-card-subtitle {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 14px;
}

.usp-card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.usp-card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usp-card-points li {
  font-size: 0.82rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.usp-card-points li i {
  color: #10b981;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ==========================================================
   ORDER PROCESS SECTION (CARA MEMESAN)
   ========================================================== */
.order-process-section {
  position: relative;
  padding: 80px 0;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.process-step-card {
  padding: 30px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(186, 230, 253, 0.6);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(57, 87, 237, 0.06);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 16px 36px rgba(57, 87, 237, 0.12);
}

.process-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(57, 87, 237, 0.14);
}

.process-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3957ed 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(57, 87, 237, 0.25);
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0b193d;
  margin-bottom: 10px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}

/* Home CTA Panel */
.home-cta-panel {
  padding: 50px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 242, 254, 0.8) 100%);
  border: 1.5px solid var(--primary-light);
}

/* ==========================================================
   QUANTITY PICKER (DETAIL PRODUK & KERANJANG)
   ========================================================== */
.quantity-picker-wrap {
  margin-bottom: 22px;
  padding: 16px 20px;
  background: rgba(248, 250, 252, 0.85);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.quantity-picker-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-light);
}

.qty-input {
  width: 65px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  outline: none;
}

.qty-input:focus {
  border-color: var(--primary);
}

.qty-unit-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-left: 4px;
}

/* Cart Item Quantity Controls in Drawer */
.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: var(--primary-light);
}

.cart-qty-val {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

/* ==========================================================
   MULTI-BRANCH WHATSAPP MODAL
   ========================================================== */
.wa-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: waFadeIn 0.25s ease-out;
}

@keyframes waFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.wa-modal-card {
  width: 100%;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: waSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.wa-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.wa-modal-close {
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.wa-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.wa-modal-summary {
  background: #f0f7ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #334155;
}

.wa-modal-branches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-modal-branch-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.wa-modal-branch-btn:hover {
  border-color: #25D366;
  background: #f0fdf4;
  transform: translateX(4px);
}

.wa-branch-info {
  display: flex;
  flex-direction: column;
}

.wa-branch-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
}

.wa-branch-sub {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.wa-branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-modal-branch-btn:hover .wa-branch-badge {
  background: #1eb857;
}

/* ==========================================================
   BRAND QUALITY ASSURANCE (QA) PANEL
   ========================================================== */
.brand-qa-panel {
  margin-top: 0;
  padding: 54px 44px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1.5px solid rgba(186, 230, 253, 0.75);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(11, 25, 61, 0.05);
  position: relative;
  overflow: hidden;
}

.brand-qa-header {
  max-width: 840px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.brand-qa-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.brand-qa-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #0b193d;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.brand-qa-desc {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 800px;
}

.brand-qa-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-qa-pill-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  padding: 28px 24px;
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(11, 25, 61, 0.03);
}

.brand-qa-pill-item:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(57, 87, 237, 0.12);
}

.qa-pill-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3957ed 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(57, 87, 237, 0.25);
}

.qa-pill-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: #0b193d;
  margin-bottom: 8px;
  line-height: 1.35;
}

.qa-pill-sub {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.6;
}

.qa-action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.qa-action-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0b193d;
  margin-bottom: 8px;
}

.qa-action-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 22px;
}

.qa-action-btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 14px;
}

.qa-action-footnote {
  font-size: 0.76rem;
  color: #94a3b8;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================
   MOBILE PRODUCTS FILTER BAR (DROPDOWN FILTER AT TOP)
   ========================================================== */
.mobile-filter-bar {
  display: none;
  /* hidden on desktop */
}

/* ==========================================================
   RESPONSIVE MEDIA QUERIES (CONSOLIDATED & CASCADE-ORDERED)
   ========================================================== */

/* --- Screen <= 1024px --- */
@media (max-width: 1024px) {
  .site-header {
    width: calc(100% - 32px);
    padding: 8px 18px;
  }

  .nav-link {
    padding: 7px 12px;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

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

  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* --- Screen <= 991px (Tablet Landscape / Portrait) --- */
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    padding: 8px 16px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    width: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(128, 200, 246, 0.4);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 1rem;
  }

  /* Seamless Hero on tablet */
  .is-home-page .site-header {
    top: 10px;
    margin-bottom: -64px;
  }

  .is-home-page .hero-section {
    padding-top: 64px;
    margin-top: 0;
    min-height: auto;
  }

  .hero-section::before {
    background-position: 75% center;
    background-size: cover;
  }

  .hero-section::after {
    background: linear-gradient(to right,
        rgba(244, 248, 252, 0.97) 0%,
        rgba(244, 248, 252, 0.95) 55%,
        rgba(244, 248, 252, 0.75) 80%,
        rgba(244, 248, 252, 0.35) 100%);
  }

  .hero-inner {
    flex-direction: column;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-photo-wrap {
    display: none;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Section Keunggulan: 1 card memanjang ke bawah */
  .usp-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Section Alur: 2 kolom di tablet */
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Sektor Layanan */
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  /* Products Catalog & Mobile Dropdown Filters */
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filter-sidebar {
    display: none;
    /* Hide bulky sidebar on mobile/tablet */
  }

  .mobile-filter-bar {
    display: block;
    margin-bottom: 24px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(186, 230, 253, 0.8);
    box-shadow: 0 10px 25px rgba(57, 87, 237, 0.06);
  }

  .mobile-filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
  }

  .mobile-filter-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b193d;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-filter-reset-btn {
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    background: #fee2e2;
    padding: 4px 10px;
    border-radius: 999px;
  }

  .mobile-search-box {
    position: relative;
    margin-bottom: 14px;
  }

  .mobile-search-input {
    width: 100%;
    height: 44px;
    padding: 10px 44px 10px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.9rem;
    color: #0b193d;
    outline: none;
    transition: all 0.2s;
  }

  .mobile-search-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(57, 87, 237, 0.15);
  }

  .mobile-search-submit {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
  }

  .mobile-filter-dropdowns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mobile-dropdown-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-field-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-select-wrapper {
    position: relative;
  }

  .mobile-select {
    width: 100%;
    height: 42px;
    padding: 8px 30px 8px 12px;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 600;
    color: #0b193d;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(57, 87, 237, 0.12);
  }

  .mobile-select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #64748b;
    pointer-events: none;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Brands Page QA Box */
  .brand-qa-panel {
    padding: 38px 26px;
  }

  .brand-qa-pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-blog-card {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .featured-blog-img-wrap {
    height: 300px;
  }

  .featured-blog-body {
    padding: 30px 24px;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-detail-article {
    padding: 30px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* --- Screen <= 768px (Mobile & Small Tablets) --- */
@media (max-width: 768px) {
  .nav-wa-btn {
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-wa-btn .nav-wa-text {
    display: none;
  }

  .nav-wa-btn i {
    font-size: 1.25rem;
    margin: 0;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* About Highlights: stat cards */
  .about-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .stat-card {
    padding: 16px 14px;
  }

  .stat-number {
    font-size: 1.85rem;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .vision-glass-box {
    padding: 24px 18px;
  }

  /* 4 Sektor Layanan di bawah Tentang Perusahaan: 1 kolom memanjang, tidak nempel */
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sector-card {
    padding: 24px 20px;
  }

  /* Section Keunggulan: 1 card memanjang ke bawah */
  .usp-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .usp-card {
    padding: 26px 20px;
  }

  /* Section Alur (Cara Memesan): 1 kolom memanjang ke bawah sehingga ke-4 card tampil berurutan */
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
  }

  .process-step-card {
    padding: 24px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-cta-panel {
    padding: 32px 18px;
  }

  .home-cta-panel h2 {
    font-size: 1.7rem !important;
  }

  .home-cta-panel p {
    font-size: 0.92rem !important;
  }

  .home-cta-panel .btn {
    width: 100%;
    justify-content: center;
  }

  /* Brands Page QA Box */
  .brand-qa-panel {
    padding: 28px 18px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .brand-qa-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .brand-qa-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .brand-qa-pill-item {
    padding: 22px 18px;
  }

  .brand-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
  }

  .featured-blog-img-wrap {
    height: 230px;
  }

  .featured-blog-body {
    padding: 22px 18px;
  }

  .featured-blog-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .featured-blog-summary {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .featured-blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
  }

  .featured-blog-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-detail-article {
    padding: 22px 16px;
  }

  .blog-detail-title {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .blog-detail-img-wrap {
    max-height: 260px;
    margin-bottom: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* --- Screen <= 576px (Standard Mobile) --- */
@media (max-width: 576px) {
  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .btn-whatsapp.btn-sm span {
    display: none;
  }

  .btn-whatsapp.btn-sm {
    padding: 8px 10px;
    border-radius: 50%;
  }

  .featured-blog-img-wrap {
    height: 195px;
  }

  .featured-blog-body {
    padding: 18px 14px;
  }

  .featured-blog-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .featured-blog-meta {
    gap: 8px 10px;
  }

  .blog-detail-article {
    padding: 18px 14px;
  }

  .blog-detail-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .blog-detail-img-wrap {
    max-height: 210px;
    margin-bottom: 18px;
  }

  .is-home-page .site-header {
    top: 8px;
    margin-bottom: -58px;
    width: calc(100% - 20px);
  }

  .is-home-page .hero-section {
    padding-top: 58px;
  }

  .is-home-page .hero-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-desc {
    font-size: 0.92rem;
  }

  .order-actions-row {
    flex-direction: column;
  }

  .order-actions-row .btn {
    width: 100%;
  }

  .mobile-filter-dropdowns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* --- Screen <= 480px (Compact Mobile) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  /* 4 Stat Highlights in Tentang Perusahaan: 1 kolom jika layar kecil agar angka dan teks tidak bertumpuk */
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .stat-number {
    margin-bottom: 0;
    font-size: 1.65rem;
    flex-shrink: 0;
  }

  .stat-label {
    text-align: right;
  }

  .usp-card-title {
    font-size: 1.25rem;
  }

  .process-step-title {
    font-size: 1.05rem;
  }
}

/* ==========================================================
   REGIONAL SALES REPRESENTATIVE CARDS & CONTACT PAGE
   ========================================================== */
.sales-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  margin-bottom: 48px;
}

.sales-card-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 25, 61, 0.07);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sales-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(11, 25, 61, 0.12);
  border-color: rgba(57, 87, 237, 0.3);
}

.sales-card-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #081226;
  overflow: hidden;
}

.sales-card-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sales-card-item:hover .sales-card-media-wrapper img {
  transform: scale(1.02);
}

/* Floating Action Circle Buttons ON THE CARD (TOP-LEFT POSITION) */
.sales-card-floating-actions {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sales-circle-btn {
  width: 46px;
  height: 46px;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.2s ease;
  flex-shrink: 0;
}

.sales-circle-btn i {
  font-size: 1.35rem;
  line-height: 1;
}

.sales-circle-btn.btn-circle-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.sales-circle-btn.btn-circle-wa:hover {
  background: #1eb857;
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.sales-circle-btn.btn-circle-email {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

.sales-circle-btn.btn-circle-email:hover {
  background: #0369a1;
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.6);
  color: #ffffff;
}

.sales-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.sales-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sales-region-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 4px 10px;
  border-radius: 20px;
}

.sales-hub-tag {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
}

.sales-rep-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.sales-rep-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.sales-rep-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sales-rep-footer-info {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================
   CONTACT OFFICIAL SOCIAL MEDIA & MARKETPLACE
   ========================================================== */
.contact-socmed-box {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 30px;
  margin-bottom: 48px;
  box-shadow: 0 8px 24px rgba(11, 25, 61, 0.04);
}

.contact-socmed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.socmed-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.socmed-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.socmed-channel-card.card-ig:hover {
  border-color: #e1306c;
}

.socmed-channel-card.card-tiktok:hover {
  border-color: #000000;
}

.socmed-channel-card.card-shopee:hover {
  border-color: #ee4d2d;
}

.socmed-channel-card.card-fb:hover {
  border-color: #1877f2;
}

.socmed-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  flex-shrink: 0;
}

.socmed-icon-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.socmed-icon-tiktok {
  background: #000000;
}

.socmed-icon-shopee {
  background: #ee4d2d;
}

.socmed-icon-fb {
  background: #1877f2;
}

.socmed-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.socmed-info span {
  font-size: 0.78rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .sales-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sales-card-floating-actions {
    top: 12px;
    left: 12px;
    gap: 10px;
  }

  .sales-circle-btn {
    width: 42px;
    height: 42px;
  }

  .sales-circle-btn i {
    font-size: 1.2rem;
  }

  .contact-socmed-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sales-card-floating-actions {
    top: 10px;
    left: 10px;
    gap: 8px;
  }

  .sales-circle-btn {
    width: 38px;
    height: 38px;
  }

  .sales-circle-btn i {
    font-size: 1.1rem;
  }
}

/* ==========================================================
   PRODUCT DETAIL & MOBILE FLOATING RESPONSIVE
   ========================================================== */
.product-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }

  .wa-popup-box {
    bottom: 82px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 380px;
    margin: 0 auto;
  }

  .product-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .product-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   RESPONSIVE ENHANCEMENTS FOR CERTIFICATIONS & PARAGON BRANDS
   ========================================================== */
@media (max-width: 991px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .certifications-section {
    padding: 50px 0;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cert-card {
    padding: 22px 18px;
  }

  .paragon-brand-hero {
    padding: 50px 0 80px 0;
  }

  .paragon-cutout-stage {
    margin-top: -40px;
    padding-bottom: 50px;
  }

  .cutout-aperture {
    padding: 24px 16px;
    border-radius: 24px 24px 16px 16px;
  }

  .cutout-aperture-window {
    padding: 16px 12px;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .brand-filter-chips {
    gap: 6px;
  }

  .brand-filter-chip {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .paragon-brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .paragon-brand-card {
    padding: 22px 18px;
  }
}

@media (max-width: 480px) {
  .brand-card-actions {
    grid-template-columns: 1fr;
  }

  .brand-card-actions>div {
    display: flex;
    justify-content: flex-end;
  }
}

/* ==========================================================
   FULL-WIDTH PARALLAX BRAND SECTIONS (PARAGON-STYLE)
   ========================================================== */
.brand-showcase-flow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ==========================================================
   BRAND PAGE INTRO HEADER (Seamless Integrated with Navbar)
   ========================================================== */
.brand-page-intro-section {
  padding: 45px 0 55px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 60%, #ffffff 100%);
  border-bottom: 1.5px solid #e2e8f0;
  text-align: center;
  position: relative;
}

.brand-intro-breadcrumbs {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.brand-intro-breadcrumbs a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.brand-intro-breadcrumbs a:hover {
  color: var(--primary);
}

.brand-intro-breadcrumbs .sep {
  color: #94a3b8;
}

.brand-intro-breadcrumbs .current {
  color: var(--primary);
  font-weight: 700;
}

.brand-intro-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #0b193d;
  margin: 16px auto 14px auto;
  max-width: 900px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.brand-intro-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto 28px auto;
}

.brand-intro-coverage-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.intro-pill-gold {
  background: #fef3c7;
  color: #92400e;
  border: 1.5px solid #fcd34d;
}

.intro-pill-gold i {
  color: #d97706;
}

.intro-pill-blue {
  background: #e0f2fe;
  color: #0369a1;
  border: 1.5px solid #7dd3fc;
}

.intro-pill-blue i {
  color: #0284c7;
}

.brand-jump-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px dashed #cbd5e1;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-jump-label {
  font-size: 0.88rem;
  font-weight: 750;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

.brand-jump-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 36px;
}

.brand-jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-jump-logo {
  height: 90px;
  max-height: 200px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.brand-jump-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.3s ease;
}

.brand-jump-link:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-4px);
}

.brand-jump-link:hover .brand-jump-logo {
  filter: grayscale(0%) drop-shadow(0 8px 20px rgba(11, 25, 61, 0.16));
  opacity: 1;
  transform: scale(1.12);
}

.brand-jump-link:hover .brand-jump-text {
  color: var(--primary);
}

/* ==========================================================
   2-STAGE BRAND SHOWCASE: PARALLAX HERO & DETAILS SECTION
   ========================================================== */
.brand-showcase-flow {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* STAGE 1: PARALLAX HERO SECTION (WIDE PANORAMIC BANNER) */
.brand-parallax-hero {
  width: 100%;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
}

.parallax-bg-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.brand-parallax-bg {
  position: absolute;
  top: -35%;
  left: -10%;
  width: 120%;
  height: 170%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* ===================================================================
   OVERLAY OPACITY / KEGELAPAN LATAR BELAKANG PARALLAX (20% OPACITY)
   Ubah nilai background: rgba(...) di bawah ini untuk mengatur kegelapan:
   - Nilai 0.20 = 20% kegelapan (latar belakang gambar lab terlihat jelas & terang)
   - Jika ingin lebih terang: gunakan 0.15 (15%)
   - Jika ingin lebih gelap: gunakan 0.30 (30%)
   =================================================================== */
.brand-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 61, 0.20);
  /* <-- TINGKAT KEGELAPAN DEFAULT 20% */
  z-index: 2;
  pointer-events: none;
}

/* Atmospheric Identity Subtle Tints (Tingkat Kegelapan 20%) */
.overlay-daihan {
  background: rgba(15, 23, 42, 0.22);
}

.overlay-duran {
  background: rgba(8, 27, 58, 0.20);
}

.overlay-sartorius {
  background: rgba(6, 35, 26, 0.20);
}

.overlay-horiba {
  background: rgba(4, 32, 44, 0.20);
}

.overlay-microgen {
  background: rgba(30, 11, 43, 0.20);
}

.overlay-ohaus {
  background: rgba(35, 15, 22, 0.20);
}

.overlay-cdh {
  background: rgba(12, 27, 51, 0.20);
}

.overlay-talpha {
  background: rgba(6, 33, 33, 0.20);
}

/* Standalone Brand Visual Emblem Logo (Tanpa Persegi Glass & Tanpa Box Putih) */
@keyframes brandLogoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.brand-hero-logo-standalone {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-hero-logo-standalone:hover {
  transform: scale(1.05);
}

.brand-standalone-logo {
  max-width: 400px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
  display: block;
  animation: brandLogoFloat 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.brand-hero-logo-standalone:hover .brand-standalone-logo {
  transform: scale(1.06) translateY(-4px);
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
}

/* STAGE 2: BRAND DETAILS SECTION (TANPA BACKGROUND GAMBAR) */
.brand-details-section {
  width: 100%;
  background: #ffffff;
  padding: 44px 0 52px 0;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
  z-index: 10;
}

.brand-details-header {
  max-width: 860px;
  margin: 0 auto 28px auto;
  text-align: center;
}

.brand-meta-pill-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.brand-country-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.brand-section-lead {
  font-size: 1.06rem;
  color: #334155;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 820px;
}

/* Features Grid */
.brand-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 45px;
}

.brand-feature-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.brand-feature-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(57, 87, 237, 0.08);
}

.brand-feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(57, 87, 237, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.brand-feature-info h4 {
  font-size: 0.98rem;
  font-weight: 750;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.brand-feature-info p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* Brand Details Action Buttons */
.brand-details-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.brand-details-actions .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 750;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================
   SMOOTH MORPH REVEAL ANIMATION (Muncul dari Bawah saat Scroll)
   ========================================================== */
.reveal-morph {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-morph.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered Delay */
.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

.delay-4 {
  transition-delay: 0.42s;
}

@media (max-width: 768px) {

  /* Tampilan Mobile: Banner diperbesar atas & bawah hingga berbentuk persegi */
  .brand-parallax-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 280px;
    max-height: 420px;
    padding: 24px 16px;
  }

  .brand-standalone-logo {
    width: 82%;
    max-width: 340px;
    max-height: 180px;
    height: auto;
  }

  .brand-details-section {
    padding: 36px 0 42px 0;
  }

  .brand-section-lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .brand-details-actions {
    flex-direction: column;
    width: 100%;
  }

  .brand-details-actions a,
  .brand-details-actions button {
    width: 100%;
    justify-content: center;
  }

  /* Navigasi Cepat Brand Mobile: ukuran sedikit lebih besar & proporsional */
  .brand-jump-bar {
    padding-top: 20px;
    gap: 12px;
  }

  .brand-jump-list {
    gap: 14px 22px;
  }

  .brand-jump-link {
    padding: 6px 8px;
  }

  .brand-jump-logo {
    height: 60px;
    max-height: 100px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .brand-jump-list {
    gap: 12px 16px;
  }

  .brand-jump-logo {
    height: var(--nav-logo-h-mobile, 36px);
    max-height: 38px;
    max-width: 110px;
  }
}