/*
Theme Name: Cleanique Lab Theme
Theme URI: https://cleaniquelab.com
Author: Cleanique Lab Dev Team
Author URI: https://cleaniquelab.com
Description: Tema resmi Cleanique Lab - Produsen aneka sabun dan produk kebersihan untuk keperluan industri, kesehatan, pendidikan, laundry, dan rumah tangga. Desain modern, cepat, SEO-friendly, dan berkonversi tinggi.
Version: 1.3.7
Tested up to: 7.1
Requires PHP: 7.4
License: Proprietary
Text Domain: cleaniquelab
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Source+Sans+3:wght@400;600;700;800;900&family=Ubuntu:wght@400;500;700&display=swap');

/* ==========================================================================
   1. ROOT VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Cleanique Lab Primary Brand Blues */
  --cq-cyan: #00d2ff;
  --cq-royal-blue: #3a7bd5;
  --cq-electric-blue: #396afc;
  --cq-deep-blue: #0055d6;
  --cq-dark-blue: #0a2563;

  /* Fresh Neon Lime & Active Green */
  --cq-lime-neon: #aef711;
  --cq-lime-soft: #b4fc6c;
  --cq-green-vibrant: #7edb0d;
  --cq-green-deep: #109733;
  --cq-green-dark: #107526;

  /* High Conversion Coral CTA */
  --cq-orange-cta: #ea501f;
  --cq-orange-bright: #ff6900;

  /* Category Accents */
  --cq-magenta: #e96199;
  --cq-magenta-dark: #e9435a;
  --cq-purple: #6d0a6c;
  --cq-purple-bright: #a51da3;
  --cq-purple-dark: #540a52;
  --cq-red: #c61111;
  --cq-red-bright: #f71b1b;
  --cq-red-dark: #720000;
  --cq-gold: #ffc700;

  /* Dark Slate Footer & Contrasts */
  --cq-slate-dark: #2b2b33;
  --cq-slate-deeper: #23232d;
  --cq-slate-border: #3e3e4b;
  --cq-slate-subtle: #576677;

  /* Light Neutrals */
  --cq-white: #ffffff;
  --cq-bg-light: #f9f9f9;
  --cq-bg-soft: #eff3f7;
  --cq-border-light: #e8e6f2;
  --cq-text-dark: #23232d;
  --cq-text-body: #404040;
  --cq-text-muted: #52565a;

  /* Typography */
  --cq-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --cq-font-heading: 'Source Sans 3', 'Open Sans', sans-serif;
  --cq-font-label: 'Ubuntu', 'Inter', sans-serif;

  /* Gradients */
  --cq-gradient-hero: radial-gradient(circle farthest-side, #00d2ff 35px, #3a7bd5);
  --cq-gradient-blue: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  --cq-gradient-green: linear-gradient(135deg, #109733 0%, #7edb0d 100%);
  --cq-gradient-purple: linear-gradient(135deg, #6d0a6c 0%, #a51da3 100%);
  --cq-gradient-red: linear-gradient(135deg, #c61111 0%, #f71b1b 100%);
  --cq-gradient-cta: linear-gradient(120deg, #ea501f 0%, #ff6900 100%);
  --cq-gradient-magenta: linear-gradient(120deg, #e96199 0%, #e9435a 100%);
}

/* ==========================================================================
   2. RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--cq-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cq-text-body);
  background-color: var(--cq-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.cq-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

a {
  color: var(--cq-royal-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--cq-deep-blue);
}

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

/* ==========================================================================
   3. LAYOUT & CONTAINERS
   ========================================================================== */
.cq-container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.cq-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cq-section-with-wave {
  padding-bottom: 180px;
}

@media (max-width: 991px) {
  .cq-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .cq-section-with-wave {
    padding-bottom: 120px;
  }
}

@media (max-width: 480px) {
  .cq-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cq-section-with-wave {
    padding-bottom: 90px;
  }
}

/* ==========================================================================
   4. TOP ANNOUNCEMENT BAR & NAVIGATION
   ========================================================================== */
.cq-topbar {
  background: var(--cq-dark-blue);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cq-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cq-topbar a {
  color: var(--cq-lime-soft);
  font-weight: 700;
}

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

.cq-topbar-badge {
  background: rgba(0, 210, 255, 0.2);
  color: var(--cq-cyan);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 767px) {
  .cq-topbar {
    display: none;
  }
}

.cq-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cq-white);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
}

.cq-header.scrolled {
  box-shadow: 0px 15px 30px 2px rgba(0, 0, 0, 0.12);
}

.cq-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.cq-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--cq-font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--cq-royal-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}

.cq-logo span {
  color: var(--cq-lime-primary);
  margin-left: 2px;
}

.cq-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.cq-logo:hover img {
  transform: scale(1.08);
}

.cq-desktop-nav {
  display: flex;
  align-items: center;
}

.cq-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}

.cq-nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--cq-font-body);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(94, 94, 94, 0.9);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cq-nav-menu li a:hover,
.cq-nav-menu li.current-menu-item a {
  color: var(--cq-royal-blue);
  background-color: #f0f4fc;
}

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

.cq-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.cq-nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--cq-text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   5. MOBILE DRAWER & BACKDROP
   ========================================================================== */
.cq-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cq-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

@media (max-width: 480px) {
  .cq-mobile-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

.cq-mobile-drawer.is-active {
  transform: translateX(0);
}

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

.cq-drawer-close {
  background: none;
  border: none;
  color: var(--cq-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.cq-drawer-close:hover {
  background-color: var(--cq-bg-soft);
}

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

.cq-drawer-menu {
  list-style: none;
  margin-bottom: 24px;
}

.cq-drawer-menu li {
  margin-bottom: 8px;
}

.cq-drawer-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--cq-text-dark);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.cq-drawer-menu li a:hover,
.cq-drawer-menu li.current-menu-item a {
  background-color: var(--cq-bg-soft);
  color: var(--cq-royal-blue);
  padding-left: 20px;
}

.cq-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--cq-border-light);
}

@media (max-width: 991px) {
  .cq-desktop-nav {
    display: none;
  }
  .cq-nav-toggle {
    display: flex;
  }
  .cq-hide-mobile {
    display: none !important;
  }
}

/* ==========================================================================
   6. BUTTONS & CALL TO ACTIONS
   ========================================================================== */
.cq-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cq-gradient-cta);
  background-color: var(--cq-orange-cta);
  color: #ffffff !important;
  font-family: var(--cq-font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(234, 80, 31, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 44px;
}

.cq-btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 30px rgba(234, 80, 31, 0.5);
  color: #ffffff;
}

.cq-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 2px solid #ffffff;
  border-radius: 1000px;
  color: #ffffff !important;
  font-family: var(--cq-font-body);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px;
}

.cq-btn-outline:hover {
  background-color: var(--cq-magenta);
  border-color: var(--cq-magenta);
  transform: scale(1.04);
}

.cq-btn-outline-dark {
  border-color: var(--cq-royal-blue);
  color: var(--cq-royal-blue) !important;
}

.cq-btn-outline-dark:hover {
  background-color: var(--cq-royal-blue);
  color: #ffffff !important;
}

.cq-btn-sm {
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.cq-hero {
  position: relative;
  background: var(--cq-gradient-hero);
  background-color: var(--cq-deep-blue);
  color: #ffffff;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 200px;
  overflow: hidden;
}

.cq-hero-eyebrow {
  display: inline-block;
  font-family: var(--cq-font-body);
  font-size: 18px;
  font-weight: 900;
  color: var(--cq-lime-soft);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.cq-hero-h1 {
  font-family: var(--cq-font-body);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cq-hero-lead {
  font-family: var(--cq-font-body);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 500;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  opacity: 0.95;
}

.cq-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cq-hero-visual {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.cq-hero-product-img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.cq-badge-float {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--cq-text-dark);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: cqFloat 4s ease-in-out infinite;
}

.cq-badge-float.left {
  left: -10px;
  top: 15%;
  animation-delay: 0s;
}

.cq-badge-float.right {
  right: -10px;
  bottom: 20%;
  animation-delay: 2s;
}

@keyframes cqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 767px) {
  .cq-hero {
    padding-top: 50px;
    padding-bottom: 120px;
  }
  .cq-badge-float {
    display: none;
  }
}

/* Shape Wave Divider */
.cq-wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.cq-wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: clamp(60px, 12vw, 220px);
}

/* ==========================================================================
   8. SPOTLIGHT CARDS & BANNER (SOROTAN UTAMA)
   ========================================================================== */
.cq-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 48px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-spotlight-card:hover {
  box-shadow: 0 20px 50px rgba(58, 123, 213, 0.12);
}

.cq-spotlight-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .cq-spotlight-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.cq-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--cq-font-label);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cq-royal-blue);
  background: #eef5ff;
  border: 1px solid #c2dbff;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.cq-spotlight-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  color: var(--cq-text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.cq-spotlight-desc {
  font-size: 15px;
  color: var(--cq-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.cq-spotlight-features {
  list-style: none;
  margin-bottom: 26px;
}

.cq-spotlight-features li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cq-text-dark);
}

.cq-spotlight-visual {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}

.cq-spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* ==========================================================================
   FLAT BLOG LAYOUT (TANPA CARD CONTAINER - MATCHING DESAIN USER)
   ========================================================================== */

/* Flat Spotlight Section */
.cq-spotlight-flat-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cq-border-light);
}

@media (max-width: 991px) {
  .cq-spotlight-flat-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cq-spotlight-flat-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #f1f5f9;
}

.cq-spotlight-flat-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cq-spotlight-flat-wrap:hover .cq-spotlight-flat-visual img {
  transform: scale(1.03);
}

/* Flat Grid (3 Kolom) */
.cq-flat-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 44px 28px;
  margin-top: 24px;
}

.cq-flat-post-item {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Flat Post Thumbnail Container (Square / 1:1 Aspect Ratio) */
.cq-flat-post-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
}

.cq-flat-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.cq-flat-post-item:hover .cq-flat-post-thumb img {
  transform: scale(1.05);
}

/* Date Badge Overlay on Top-Right of Image */
.cq-flat-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-family: var(--cq-font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Flat Content Below Image */
.cq-flat-post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 14px;
}

.cq-flat-post-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--cq-text-dark);
  line-height: 1.38;
  margin: 0 0 10px 0;
}

.cq-flat-post-title a {
  color: var(--cq-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cq-flat-post-title a:hover {
  color: var(--cq-royal-blue);
}

.cq-flat-post-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* ==========================================================================
   9. SINGLE ARTICLE & SHARE BUTTONS (RICH ARTICLE STYLING)
   ========================================================================== */
.cq-single-hero {
  text-align: left;
}

.cq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cq-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.cq-breadcrumb a:hover {
  color: var(--cq-lime-soft);
}

.cq-breadcrumb-sep {
  opacity: 0.5;
}

.cq-single-title {
  font-size: clamp(28px, 4.5vw, 48px);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.cq-single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #eaf2fd;
}

.cq-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cq-author-avatar-sm {
  width: 26px;
  height: 26px;
  background: var(--cq-lime-neon);
  color: #107526;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
}

.cq-meta-sep {
  opacity: 0.4;
}

.cq-meta-badge {
  background: rgba(174, 247, 17, 0.2);
  color: var(--cq-lime-soft);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.cq-single-featured-img {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--cq-border-light);
}

.cq-featured-img-tag {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

/* Social Share Bar */
.cq-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 22px;
  background: var(--cq-bg-soft);
  border-radius: 16px;
  border: 1px solid var(--cq-border-light);
  margin-bottom: 36px;
}

.cq-share-bar-bottom {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.cq-share-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--cq-text-dark);
}

.cq-share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cq-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  font-size: 14px;
  color: #ffffff !important;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cq-share-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

/* Tooltip Label Sosmed */
.cq-share-btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background-color: #1e293b;
  color: #ffffff;
  font-family: var(--cq-font-body);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.cq-share-btn[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #1e293b transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.cq-share-btn[data-tooltip]:hover::after,
.cq-share-btn[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cq-share-wa { background-color: #25d366; }
.cq-share-fb { background-color: #1877f2; }
.cq-share-x { background-color: #000000; }
.cq-share-in { background-color: #0077b5; }

.cq-share-copy {
  background-color: var(--cq-slate-dark);
}

.cq-share-copy.cq-copied {
  background-color: var(--cq-green-deep);
}

/* Article Highlights Box */
.cq-article-highlights {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.cq-highlights-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--cq-royal-blue);
  font-size: 16px;
}

.cq-highlights-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cq-highlights-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cq-highlights-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: #1e3a8a;
  line-height: 1.6;
  margin-bottom: 8px;
}

.cq-highlights-list li:last-child {
  margin-bottom: 0;
}

.cq-highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cq-green-deep);
  font-weight: 900;
  font-size: 14px;
}

/* Rich Article Body Content */
.cq-article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #333333;
}

.cq-article-body p {
  margin-bottom: 22px;
}

.cq-article-body h2 {
  font-size: clamp(22px, 3.2vw, 30px);
  margin-top: 40px;
  margin-bottom: 18px;
  color: var(--cq-text-dark);
  line-height: 1.3;
}

.cq-article-body h3 {
  font-size: clamp(19px, 2.5vw, 24px);
  margin-top: 32px;
  margin-bottom: 14px;
  color: var(--cq-text-dark);
}

.cq-article-body blockquote {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--cq-bg-soft);
  padding: 22px 28px;
  margin: 28px 0;
  border-radius: 16px;
  font-style: italic;
  font-size: 18px;
  color: var(--cq-text-dark);
  line-height: 1.7;
}

.cq-article-body ul,
.cq-article-body ol {
  margin: 16px 0 24px 28px;
}

.cq-article-body li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.cq-article-body img {
  border-radius: 14px;
  margin: 28px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Article Tags */
.cq-single-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--cq-border-light);
  margin-top: 36px;
}

.cq-tags-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--cq-text-dark);
  text-transform: uppercase;
}

.cq-tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cq-tag-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--cq-royal-blue);
  background: var(--cq-bg-soft);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.cq-tag-item:hover {
  background: var(--cq-royal-blue);
  color: #ffffff;
}

/* Author Box */
.cq-author-box {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 20px;
  padding: 28px;
  margin: 36px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

@media (max-width: 640px) {
  .cq-author-box {
    flex-direction: column;
    text-align: center;
  }
}

.cq-author-avatar-lg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cq-cyan) 0%, var(--cq-royal-blue) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(58, 123, 213, 0.3);
}

.cq-author-info {
  flex-grow: 1;
}

.cq-author-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cq-green-deep);
  background: #eafaf1;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.cq-author-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--cq-text-dark);
  margin-bottom: 6px;
}

.cq-author-desc {
  font-size: 14px;
  color: var(--cq-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.cq-author-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--cq-royal-blue);
  text-decoration: underline;
}

/* Post Navigation (Prev/Next) */
.cq-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

@media (max-width: 640px) {
  .cq-post-nav {
    grid-template-columns: 1fr;
  }
}

.cq-nav-card {
  display: block;
  background: var(--cq-bg-soft);
  border: 1px solid var(--cq-border-light);
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  height: 100%;
}

.cq-nav-card:hover {
  background: #ffffff;
  border-color: var(--cq-royal-blue);
  box-shadow: 0 8px 24px rgba(58, 123, 213, 0.1);
  transform: translateY(-2px);
}

.cq-nav-direction {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cq-text-muted);
  margin-bottom: 6px;
}

.cq-nav-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--cq-text-dark);
  line-height: 1.4;
}

/* Single CTA Banner */
.cq-single-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1.5px solid #bfdbfe;
  border-radius: 22px;
  padding: 36px;
  margin-top: 48px;
}

.cq-single-cta-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cq-green-deep);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.cq-single-cta-h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--cq-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cq-single-cta-p {
  font-size: 15px;
  color: var(--cq-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ==========================================================================
   10. INDUSTRY VERTICALS & PRODUCT CARDS
   ========================================================================== */
.cq-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .cq-industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cq-industry-grid {
    grid-template-columns: 1fr;
  }
}

.cq-industry-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 20px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(58, 123, 213, 0.12);
  border-color: var(--cq-cyan);
}

.cq-industry-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cq-industry-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cq-text-dark);
}

.cq-industry-card p {
  font-size: 14px;
  color: var(--cq-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cq-industry-tag {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cq-royal-blue);
  background: #f0f4fc;
  padding: 6px 12px;
  border-radius: 8px;
  align-self: flex-start;
}

/* Product Cards Grid */
.cq-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1120px) {
  .cq-product-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 20px;
  }
}

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

.cq-card {
  border-radius: 18px;
  padding: 36px 20px 84px 20px;
  color: #ffffff;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.cq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cq-card-green { background: var(--cq-gradient-green); }
.cq-card-purple { background: var(--cq-gradient-purple); }
.cq-card-blue { background: var(--cq-gradient-blue); }
.cq-card-red { background: var(--cq-gradient-red); }

.cq-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--cq-font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: rgba(0, 0, 0, 0.25);
  margin-bottom: 16px;
  color: #ffffff;
}

.cq-card-title {
  font-family: var(--cq-font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cq-card-price {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}

.cq-card-price .cq-unit {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.88;
}

.cq-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.cq-card-features li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.cq-card-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  color: var(--cq-text-dark);
  font-family: var(--cq-font-body);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cq-card-btn:hover {
  background: #f4f4f4;
  transform: scale(1.02);
  color: var(--cq-royal-blue);
}

/* ==========================================================================
   11. DESCRIPTIVE QUALITY ASSURANCE MATRIX (2x2 GRID)
   ========================================================================== */
.cq-spec-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media (max-width: 820px) {
  .cq-spec-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cq-spec-card-rich {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cq-spec-card-rich:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(58, 123, 213, 0.1);
  border-color: var(--cq-cyan);
}

.cq-spec-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cq-spec-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cq-spec-title-wrap h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--cq-text-dark);
  line-height: 1.3;
}

.cq-spec-subtag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 4px;
}

.cq-spec-desc {
  font-size: 14.5px;
  color: var(--cq-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.cq-spec-points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--cq-border-light);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cq-spec-points li {
  font-size: 13.5px;
  color: var(--cq-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* ==========================================================================
   12. BLOG & ARTIKEL GRID
   ========================================================================== */
.cq-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 991px) {
  .cq-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cq-blog-grid {
    grid-template-columns: 1fr;
  }
}

.cq-article-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  border-color: var(--cq-cyan);
}

.cq-article-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--cq-bg-soft);
  position: relative;
}

.cq-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cq-article-card:hover .cq-article-thumb img {
  transform: scale(1.05);
}

.cq-article-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cq-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--cq-text-muted);
  margin-bottom: 10px;
}

.cq-article-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.cq-article-title a {
  color: var(--cq-text-dark);
  text-decoration: none;
}

.cq-article-title a:hover {
  color: var(--cq-royal-blue);
}

.cq-article-excerpt {
  font-size: 14px;
  color: var(--cq-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cq-article-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--cq-royal-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cq-article-link:hover {
  color: var(--cq-deep-blue);
  gap: 10px;
}

/* ==========================================================================
   13. TABEL PRICELIST & FILTER
   ========================================================================== */
.cq-tabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.cq-tab-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 30px;
  border: 1.5px solid var(--cq-border-light);
  background: #ffffff;
  color: var(--cq-text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cq-tab-btn:hover,
.cq-tab-btn.active {
  background: var(--cq-royal-blue);
  color: #ffffff;
  border-color: var(--cq-royal-blue);
  box-shadow: 0 4px 14px rgba(58, 123, 213, 0.25);
}

.cq-table-responsive {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--cq-border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.cq-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.cq-price-table th,
.cq-price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--cq-border-light);
  font-size: 14px;
}

.cq-price-table th {
  background: #f0f4fc;
  font-weight: 800;
  color: var(--cq-text-dark);
}

.cq-price-table tr:last-child td {
  border-bottom: none;
}

.cq-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cq-tag-green { background: #eafaf1; color: var(--cq-green-deep); }
.cq-tag-purple { background: #fbf0fc; color: var(--cq-purple-bright); }
.cq-tag-blue { background: #eff6ff; color: var(--cq-royal-blue); }
.cq-tag-red { background: #fdf1f1; color: var(--cq-red); }

/* ==========================================================================
   14. SOCIAL & MARKETPLACE BUTTONS & CHANNELS
   ========================================================================== */
.cq-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cq-social-btn {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background-color: var(--cq-royal-blue);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cq-social-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cq-social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.cq-social-shopee {
  background-color: #ee4d2d;
}

.cq-social-tiktok {
  background-color: #010101;
}

.cq-social-wa {
  background-color: #25d366;
}

.cq-channel-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cq-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.cq-channel-ig:hover { border-color: #e1306c; }
.cq-channel-shopee:hover { border-color: #ee4d2d; }
.cq-channel-tiktok:hover { border-color: #010101; }

.cq-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cq-channel-card strong {
  font-size: 14px;
  color: var(--cq-text-dark);
  line-height: 1.2;
}

.cq-channel-card span {
  font-size: 12px;
  color: var(--cq-text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   15. GEO COVERAGE HUBS & CARGO STRIP
   ========================================================================== */
.cq-geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .cq-geo-grid {
    grid-template-columns: 1fr;
  }
  .cq-geo-card[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }
}

.cq-geo-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.cq-geo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cq-geo-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--cq-text-dark);
}

.cq-geo-card p {
  font-size: 14px;
  color: var(--cq-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.cq-geo-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--cq-royal-blue);
  background: #f0f4fc;
  padding: 4px 10px;
  border-radius: 6px;
}

.cq-cargo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--cq-bg-soft);
  border-radius: 16px;
  padding: 18px 24px;
  border: 1px solid var(--cq-border-light);
}

.cq-cargo-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cq-cargo-badge-item {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cq-text-dark);
}

/* ==========================================================================
   16. STEPS & ORDER SOP
   ========================================================================== */
.cq-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .cq-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cq-step-card {
  background: #ffffff;
  border: 1px solid var(--cq-border-light);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.cq-step-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--cq-royal-blue);
  opacity: 0.25;
  margin-bottom: 6px;
  line-height: 1;
}

.cq-step-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--cq-text-dark);
}

.cq-step-card p {
  font-size: 13px;
  color: var(--cq-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   17. FAQ ACCORDION (FAQPAGE SCHEMA COMPLIANT)
   ========================================================================== */
.cq-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cq-faq-item {
  border: 1px solid var(--cq-border-light);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cq-faq-item.is-open {
  border-color: var(--cq-royal-blue);
  box-shadow: 0 8px 24px rgba(58, 123, 213, 0.08);
}

.cq-faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  color: var(--cq-text-dark);
  cursor: pointer;
  font-family: inherit;
}

.cq-faq-icon {
  flex-shrink: 0;
  color: var(--cq-royal-blue);
  transition: transform 0.3s ease;
}

.cq-faq-item.is-open .cq-faq-icon {
  transform: rotate(180deg);
}

.cq-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.cq-faq-item.is-open .cq-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.cq-faq-answer p {
  font-size: 15px;
  color: var(--cq-text-muted);
  line-height: 1.7;
}

/* CTA Box */
.cq-cta-box {
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cq-cta-box h2 {
  color: #ffffff;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
}

.cq-cta-box p {
  color: #ffffff;
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* ==========================================================================
   18. LEGAL PAGES TYPOGRAPHY & STYLING
   ========================================================================== */
.cq-legal-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cq-text-body);
}

.cq-legal-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--cq-text-dark);
  margin-bottom: 24px;
}

.cq-legal-divider {
  border: 0;
  height: 1px;
  background-color: var(--cq-border-light);
  margin: 30px 0;
}

.cq-legal-section {
  margin-bottom: 36px;
}

.cq-legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--cq-text-dark);
  margin-bottom: 14px;
}

.cq-legal-section p {
  margin-bottom: 14px;
}

.cq-legal-section ul,
.cq-legal-section ol {
  margin: 12px 0 18px 24px;
}

.cq-legal-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.cq-legal-contact-box {
  background: var(--cq-bg-soft);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--cq-border-light);
  margin-top: 16px;
  line-height: 1.8;
}

.cq-cookie-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid var(--cq-border-light);
}

.cq-legal-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
}

.cq-legal-table th,
.cq-legal-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--cq-border-light);
  font-size: 14px;
}

.cq-legal-table th {
  background-color: #f0f4fc;
  font-weight: 800;
  color: var(--cq-text-dark);
}

/* ==========================================================================
   19. FOOTER (RICH 5-COLUMN SLATE DARK #2b2b33)
   ========================================================================== */
.cq-footer {
  background-color: var(--cq-slate-dark);
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 2px solid var(--cq-slate-border);
}

.cq-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr 1.6fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 1120px) {
  .cq-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .cq-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.cq-footer-brand h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.cq-footer-brand p {
  color: #c2bfd3;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cq-footer-col h4 {
  font-family: var(--cq-font-heading);
  font-size: 16px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.cq-footer-links {
  list-style: none;
}

.cq-footer-links li {
  margin-bottom: 10px;
}

.cq-footer-links a {
  color: #74d8c2;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.cq-footer-links a:hover {
  color: #41c3e5;
  padding-left: 4px;
}

.cq-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c2bfd3;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Jaringan Ekosistem Bisnis Backlink Bar */
.cq-footer-network {
  border-top: 1px solid var(--cq-slate-border);
  padding-top: 24px;
  margin-bottom: 24px;
}

.cq-network-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #c2bfd3;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cq-network-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 13px;
}

.cq-network-item {
  color: #74d8c2;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.cq-network-item:hover {
  color: #ffffff;
  text-decoration: underline;
}

.cq-network-sep {
  color: var(--cq-slate-subtle);
  font-size: 10px;
}

.cq-footer-bottom {
  border-top: 1px solid var(--cq-slate-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: #a09fa2;
}

.cq-footer-legal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cq-footer-legal-bar a {
  color: #a09fa2;
}

.cq-footer-legal-bar a:hover {
  color: #ffffff;
}

/* ==========================================================================
   20. EDGE-DOCKED PRIVACY & COOKIE SLIDE-OUT TAB
   ========================================================================== */
.cq-cookie-widget {
  font-family: var(--cq-font-body);
}

.cq-cookie-edge-tab {
  position: fixed;
  left: 0;
  bottom: 45px;
  width: 38px;
  height: 48px;
  background: linear-gradient(180deg, #fefefe 0%, #e2e2e6 100%);
  border: 1.5px solid #23232d;
  border-left: none;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 9995;
  transition: width 0.2s ease, background 0.2s ease;
}

.cq-cookie-edge-tab:hover {
  width: 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f4 100%);
  color: var(--cq-royal-blue);
  box-shadow: 3px 6px 16px rgba(0, 0, 0, 0.25);
}

.cq-tab-arrow-icon {
  stroke-width: 2.2;
  transition: transform 0.2s ease;
}

.cq-cookie-edge-tab:hover .cq-tab-arrow-icon {
  transform: translateX(2px);
}

.cq-cookie-drawer {
  position: fixed;
  left: 0;
  bottom: 35px;
  width: 320px;
  max-width: calc(100vw - 32px);
  background-color: #ffffff;
  border: 1.5px solid #23232d;
  border-left: none;
  border-radius: 0 16px 16px 0;
  box-shadow: 8px 12px 35px rgba(0, 0, 0, 0.22);
  padding: 20px;
  color: var(--cq-text-dark);
  z-index: 9995;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cq-cookie-drawer.is-open {
  transform: translateX(0);
}

.cq-cookie-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.cq-cookie-card-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cq-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cq-cookie-card-close:hover {
  background-color: var(--cq-bg-soft);
  color: var(--cq-text-dark);
}

.cq-cookie-drawer-body p {
  font-size: 13px;
  color: var(--cq-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cq-cookie-drawer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 480px) {
  .cq-cookie-edge-tab {
    bottom: 35px;
    height: 44px;
    width: 34px;
  }
  .cq-cookie-drawer {
    bottom: 25px;
    width: calc(100vw - 24px);
    border-radius: 0 14px 14px 0;
  }
}

/* ==========================================================================
   21. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.cq-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9996;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.cq-whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .cq-whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .cq-whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Video Section & Video Responsive Wrapper */
.cq-video-section {
  position: relative;
  overflow: hidden;
}

.cq-video-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cq-video-wrapper:hover {
  transform: scale(1.005);
}

/* Template Showcase Cards */
.cq-template-card-hover {
  transition: all 0.3s ease;
}

.cq-template-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   BLOG PAGINATION STYLING
   ========================================================================== */
.cq-pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cq-pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 16px;
  border-radius: 50px;
  font-family: var(--cq-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--cq-text-dark);
  background-color: #ffffff;
  border: 1px solid var(--cq-border-light);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cq-pagination-wrap .page-numbers:hover {
  background-color: var(--cq-royal-blue);
  color: #ffffff;
  border-color: var(--cq-royal-blue);
  transform: translateY(-2px);
}

.cq-pagination-wrap .page-numbers.current {
  background: var(--cq-gradient-cta);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(234, 80, 31, 0.3);
}

.cq-pagination-wrap .page-numbers.dots {
  border: none;
  background: transparent;
  box-shadow: none;
}

/* ==========================================================================
   ABOUT PAGE RESPONSIVE STYLING
   ========================================================================== */
.cq-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cq-about-standar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cq-about-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .cq-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cq-about-standar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cq-about-ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .cq-about-ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ==========================================================================
   DOWNLOAD KATALOG & HARGA SECTION STYLING
   ========================================================================== */
.cq-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.cq-download-grid::before {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.cq-download-col {
  padding: 30px 40px;
  text-align: center;
}

.cq-download-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cq-download-col:hover .cq-download-icon-wrap {
  transform: scale(1.1) rotate(4deg);
}

.cq-btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 42px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: var(--cq-font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cq-btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--cq-royal-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cq-download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cq-download-grid::before {
    display: none;
  }
  .cq-download-col {
    padding: 10px 20px;
  }
}

/* ==========================================================================
   PAKET KEAGENAN PRICING SECTION STYLING
   ========================================================================== */
.cq-keagenan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.cq-keagenan-card {
  border-radius: 24px;
  padding: 32px 24px 28px 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.cq-keagenan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.cq-keagenan-card.starter {
  background: linear-gradient(180deg, #10b981 0%, #15803d 100%);
}

.cq-keagenan-card.reseller {
  background: linear-gradient(180deg, #8b5cf6 0%, #6b21a8 100%);
}

.cq-keagenan-card.agen {
  background: linear-gradient(180deg, #0284c7 0%, #1d4ed8 100%);
}

.cq-keagenan-card.super-agen {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
}

.cq-keagenan-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-family: var(--cq-font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.cq-keagenan-price {
  font-family: var(--cq-font-heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
}

.cq-keagenan-subdisc {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  margin-bottom: 24px;
}

.cq-keagenan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.cq-keagenan-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  font-weight: 600;
}

.cq-keagenan-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #fde047;
  font-size: 18px;
  line-height: 1;
}

.cq-keagenan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 50px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: var(--cq-font-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cq-keagenan-btn:hover {
  background: #ffffff;
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 1100px) {
  .cq-keagenan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cq-keagenan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cq-keagenan-card {
    padding: 28px 20px;
  }
}

