/**
 * trendingtwitter.id - Master Stylesheet
 * Architecture: Modern Vanilla CSS with Custom Properties, Glassmorphism, & Twitter/X Dark Aesthetic
 * Lightweight, Ultra-fast, Zero-dependency
 */

/* ==========================================================================
   1. CSS Custom Properties / Design Tokens
   ========================================================================== */
:root {
  /* Color Palette - Modern White Mode with Twitter/X Electric Accents */
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-elevated: #ffffff;
  --bg-surface-glass: rgba(255, 255, 255, 0.92);
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;

  /* Brand Accents */
  --x-blue: #1d9bf0;
  --x-blue-hover: #1a8cd8;
  --x-blue-glow: rgba(29, 155, 240, 0.22);
  --x-cyan: #00ba7c;
  --x-cyan-hover: #009664;
  --x-cyan-glow: rgba(0, 186, 124, 0.18);
  --x-purple: #7856ff;
  --x-purple-glow: rgba(120, 86, 255, 0.18);

  /* Neutrals & Text - Crisp, High-Contrast & Deep */
  --text-primary: #0f172a;
  /* Slate 900 */
  --text-secondary: #334155;
  /* Slate 700 */
  --text-muted: #64748b;
  /* Slate 500 */
  --text-faint: #94a3b8;
  /* Slate 400 */

  /* Borders & Gradients */
  --border-subtle: #e2e8f0;
  /* Slate 200 */
  --border-highlight: #cbd5e1;
  /* Slate 300 */
  --border-focus: #1d9bf0;
  --grad-primary: linear-gradient(135deg, #1d9bf0 0%, #000cb8 100%);
  --grad-accent: linear-gradient(135deg, #7856ff 0%, #1d9bf0 100%);
  --grad-glow: radial-gradient(circle, rgba(29, 155, 240, 0.08) 0%, rgba(255, 255, 255, 0) 70%);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Sizing */
  --container-max: 1200px;
  --nav-height: 74px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows for Crisp White Mode */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 8px 30px rgba(29, 155, 240, 0.2);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Background Ambient Lighting */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 155, 240, 0.08) 0%, rgba(0, 186, 124, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--x-blue);
}

/* ==========================================================================
   3. Container & Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

.section-spacing {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00ba7c 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(29, 155, 240, 0.08);
  border: 1px solid rgba(29, 155, 240, 0.25);
  color: #0284c7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

/* ==========================================================================
   4. Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--x-blue-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40px;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 155, 240, 0.55);
}

.btn-primary:hover::after {
  transform: translateX(350px) rotate(30deg);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--x-blue);
  transform: translateY(-2px);
  color: var(--x-blue);
  box-shadow: var(--shadow-md);
}

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

.btn-wa:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(0, 186, 124, 0.15);
  border: 1px solid rgba(0, 186, 124, 0.4);
  color: #00ba7c;
  font-size: 12px;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ba7c;
  box-shadow: 0 0 8px #00ba7c;
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 186, 124, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 186, 124, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 186, 124, 0);
  }
}

/* ==========================================================================
   5. Sticky Navigation Bar & Mega Menu
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.65);
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background, box-shadow, border-color;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  position: relative;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .nav-container {
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1002;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .brand-logo {
  height: 34px;
}

.site-header.scrolled .nav-cta {
  padding: 9px 22px !important;
  font-size: 14px;
  box-shadow: 0 3px 12px var(--x-blue-glow);
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu>a:not(.nav-cta) {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-menu>a:not(.nav-cta):hover {
  color: var(--x-blue);
}

/* Mega Wrap & Mega Toggle */
.mega-wrap {
  position: static;
  display: flex;
  align-items: center;
}

.mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  padding: 14px 0;
  transition: color var(--transition-fast);
}

.mega-toggle:hover,
.mega-wrap.open .mega-toggle,
.mega-wrap:hover .mega-toggle {
  color: var(--x-blue);
}

.mega-toggle i {
  font-size: 11px;
  transition: transform var(--transition-base);
}

.mega-wrap.open .mega-toggle i,
.mega-wrap:hover .mega-toggle i {
  transform: rotate(180deg);
  color: var(--x-blue);
}

/* Mega Menu Dropdown Container - Centered to Container */
.mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(1160px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px var(--border-subtle);
  padding: 28px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
  z-index: 1050;
  max-height: calc(85vh - var(--nav-height));
  overflow-y: auto;
}

/* Hover Bridge: Mencegah mega menu tertutup saat kursor bergerak dari tombol ke menu */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
}

.mega-wrap:hover .mega-menu,
.mega-wrap.open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mega Intro Left Column */
.mega-intro {
  background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 186, 124, 0.15);
  border: 1px solid rgba(0, 186, 124, 0.35);
  color: #00ba7c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.mega-intro h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

.mega-intro h3 span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mega-intro p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.mega-intro a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00ba7c;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.mega-intro a:hover {
  gap: 12px;
  color: #0284c7;
}

/* Mega Columns Right Grid */
.mega-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 18px;
}

.mega-column h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

.mega-column h4 i {
  color: var(--x-blue);
  font-size: 15px;
}

.mega-column a {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 3.5px 0;
  line-height: 1.4;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mega-column a:hover {
  color: var(--x-blue);
  transform: translateX(4px);
}

/* Nav CTA Button */
.nav-cta,
.nav-menu>a.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px !important;
  border-radius: var(--radius-full);
  background: var(--grad-primary) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px var(--x-blue-glow);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 155, 240, 0.5);
  color: #ffffff;
}

.nav-cta i {
  font-size: 13px;
  transition: transform var(--transition-fast);
}

.nav-cta:hover i {
  transform: translate(2px, -2px);
}

/* Nav Toggle Hamburger (3 lines) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: left center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, -2px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 2px);
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
}

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

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--x-cyan);
  flex-shrink: 0;
}

.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-wrapper img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
  transform: none;
  transition: transform var(--transition-base);
}

.hero-mockup-wrapper:hover img {
  transform: translateY(-4px);
}

/* ==========================================================================
   7. Social Proof & Statistics Counter Section
   ========================================================================== */
.stats-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-top: 60px;
  padding-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--x-blue);
}

.stat-number {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   8. Why Choose Us / Keunggulan Jasa
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background var(--transition-base);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  background: var(--grad-primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(29, 155, 240, 0.12);
  border: 1px solid rgba(29, 155, 240, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--x-blue);
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  background: rgba(29, 155, 240, 0.2);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   9. Service Packages / Paket Harga (Rate Card Spreadsheet)
   ========================================================================== */
.pricing-tabs-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pricing-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.pricing-tab-btn:hover {
  border-color: var(--x-blue);
  color: var(--x-blue);
  transform: translateY(-2px);
}

.pricing-tab-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(29, 155, 240, 0.35);
  transform: translateY(-2px);
}

.pricing-tab-btn .tab-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.08);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-tab-btn.active .tab-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.badge-desktop {
  display: inline;
}

.badge-mobile {
  display: none;
}

.table-scroll-hint {
  display: none;
}

/* Time Slot Selector Pills */
.slot-selector-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.slot-selector-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.slot-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.slot-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.slot-pill:hover {
  border-color: var(--x-blue);
  color: var(--x-blue);
}

.slot-pill.active {
  background: #eff6ff;
  border-color: var(--x-blue);
  color: var(--x-blue);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(29, 155, 240, 0.18);
}

.slot-pill .prime-badge {
  font-size: 10px;
  background: #fee2e2;
  color: #dc2626;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

/* Pricing Panel Visibility */
.pricing-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.pricing-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

/* Pricing Grid 4 Columns */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.pricing-card-dur {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.pricing-card-dur:hover {
  border-color: var(--x-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card-dur.featured-dur {
  border: 2px solid var(--x-blue);
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(29, 155, 240, 0.16);
}

.dur-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 186, 124, 0.12);
  color: #00875a;
  margin-bottom: 12px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  max-width: 100%;
}

.dur-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.dur-garansi {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  min-height: 36px;
}

.dur-main-price {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.dur-price-val {
  font-size: 27px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.dur-price-slot-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--x-blue);
  margin-top: 4px;
}

.dur-tweet-est {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #00875a;
  background: rgba(0, 186, 124, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Mini Slot Rate Table Inside Card */
.slot-rate-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  border: 1px solid var(--border-subtle);
}

.slot-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 6px;
  font-size: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.15s ease;
}

.slot-rate-item:last-child {
  border-bottom: none;
}

.slot-rate-item.highlighted {
  background: #eff6ff;
  border-radius: 4px;
  color: var(--x-blue);
}

.slot-rate-name {
  color: var(--text-secondary);
}

.slot-rate-price {
  font-weight: 700;
  color: var(--text-primary);
}

.slot-rate-item.highlighted .slot-rate-name {
  color: var(--x-blue);
  font-weight: 700;
}

.slot-rate-item.highlighted .slot-rate-price {
  color: var(--x-blue);
  font-weight: 800;
}

/* Bundling Media & Blog */
.bundling-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.bundling-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.bundling-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.bundling-header p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.bundling-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.bundling-card:hover {
  border-color: var(--x-cyan);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.bundling-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.bundling-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
}

.bundling-price {
  font-size: 18px;
  font-weight: 800;
  color: #00875a;
  white-space: nowrap;
  background: rgba(0, 186, 124, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.bundling-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bundling-list {
  list-style: none;
  margin-bottom: 22px;
}

.bundling-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.bundling-list li i {
  color: #00ba7c;
  font-size: 15px;
}

/* Detailed Comparison Table Matrix */
.specs-table-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.specs-table th,
.specs-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}

.specs-table th {
  background: var(--bg-surface);
  font-weight: 800;
  color: var(--text-primary);
  font-size: 14px;
}

.specs-table th:first-child {
  border-top-left-radius: var(--radius-md);
  width: 30%;
}

.specs-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.specs-table td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  background: #fafafa;
}

.specs-table tr:hover td {
  background: #f8fafc;
}

/* SOP Guidelines Alert */
.guidelines-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.guideline-item {
  background: #ffffff;
  border: 1px solid rgba(29, 155, 240, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}

.guideline-item h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guideline-item h4 i {
  color: var(--x-blue);
  font-size: 16px;
}

.guideline-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   10. Cara Kerja / Flow Pemesanan
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--x-blue);
}

.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--x-blue-glow);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   11. FAQ Section (Native <details> with Modern Guidance)
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--border-focus);
  background: var(--bg-surface-elevated);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--x-blue);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* ==========================================================================
   12. Floating Sticky WhatsApp Button (Icon Only)
   ========================================================================== */
.wa-floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: wa-glow 2.5s infinite;
}

@keyframes wa-glow {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-floating-btn:hover {
  background: #20bd5a;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.wa-floating-btn svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  transition: transform 0.25s ease;
}

.wa-floating-btn:hover svg {
  transform: scale(1.08);
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.7;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--x-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}

/* ==========================================================================
   14. Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-list {
    justify-content: center;
  }

  .hero-mockup-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-mockup-wrapper img {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    max-width: 100%;
    height: auto;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none !important;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px) !important;
  }

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

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

@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 100px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    border-top: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .site-header.scrolled .nav-menu {
    top: 62px;
    height: calc(100vh - 62px);
  }

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

  .nav-menu>a:not(.nav-cta) {
    font-size: 16px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .mega-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .mega-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* Matikan hover bridge desktop pada mobile */
  .mega-menu::before {
    display: none !important;
  }

  .mega-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.4s ease;
  }

  .mega-wrap.open .mega-menu {
    max-height: 5000px;
    padding: 12px 0 6px !important;
  }

  /* Ringkas banner intro mega menu pada mobile */
  .mega-intro {
    padding: 16px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
    border: 1px solid #bfdbfe;
    margin-bottom: 6px;
  }

  .mega-intro .mega-badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .mega-intro h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .mega-intro p {
    font-size: 12.5px;
    margin-bottom: 12px;
  }

  .mega-intro a {
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(0, 186, 124, 0.15);
    border: 1px solid rgba(0, 186, 124, 0.3);
    border-radius: var(--radius-full);
    width: fit-content;
  }

  /* Mobile Mega Columns - Sub-accordion tiles */
  .mega-columns {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .mega-column {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    transition: border-color 0.2s;
  }

  .mega-column:hover {
    border-color: var(--x-blue);
  }

  .mega-column h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    background: #f8fafc;
    user-select: none;
    border-bottom: none;
  }

  .mega-column h4 i:first-child {
    font-size: 16px;
    margin-right: 8px;
  }

  .mega-column .col-chevron {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.25s ease;
    margin-left: auto;
  }

  .mega-column.active .col-chevron {
    transform: rotate(180deg);
    color: var(--x-blue);
  }

  .mega-column.active h4 {
    border-bottom: 1px solid var(--border-subtle);
    background: #f0f9ff;
  }

  /* Daftar link tersembunyi dan muncul saat kategori diklik */
  .mega-column a {
    display: none;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .mega-column.active a {
    display: block;
  }

  .mega-column a:last-child {
    border-bottom: none;
  }

  .mega-column a:hover,
  .mega-column a:active {
    background: #f0f9ff;
    color: var(--x-blue);
    padding-left: 20px;
  }

  .nav-cta,
  .nav-menu>a.nav-cta {
    justify-content: center !important;
    padding: 14px 24px !important;
    margin-top: 14px;
    font-size: 15px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  /* Rate Card Mobile Optimization */
  .pricing-tabs-wrap {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }

  .pricing-tab-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: var(--radius-md);
  }

  .badge-desktop {
    display: none !important;
  }

  .badge-mobile {
    display: inline !important;
  }

  .pricing-tab-btn .tab-badge {
    font-size: 10.5px;
    padding: 4px 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .slot-selector-card {
    padding: 16px 14px;
    margin-bottom: 24px;
  }

  .slot-selector-title {
    font-size: 13.5px;
    text-align: center;
    justify-content: center;
  }

  .slot-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
  }

  .slot-pill {
    width: 100%;
    padding: 9px 8px;
    font-size: 12px;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    border-radius: var(--radius-md);
    line-height: 1.3;
  }

  .slot-pill .prime-badge {
    font-size: 9px;
    padding: 1px 6px;
  }

  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }

  .pricing-card-dur {
    padding: 24px 18px;
  }

  .dur-title {
    font-size: 19px;
  }

  .dur-price-val {
    font-size: 25px;
  }

  .dur-garansi {
    min-height: auto;
    margin-bottom: 14px;
  }

  .slot-rate-list {
    margin-bottom: 18px;
  }

  .slot-rate-item {
    padding: 6px 6px;
    font-size: 11.5px;
  }

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

  .bundling-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bundling-price {
    align-self: flex-start;
    font-size: 15px;
  }

  .bundling-box {
    padding: 24px 16px;
    margin-bottom: 32px;
  }

  .bundling-header {
    margin-bottom: 22px;
  }

  .bundling-header h3 {
    font-size: 19px;
  }

  /* Table Specs Scroll & Sticky */
  .table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--x-blue);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-full);
    padding: 8px 14px;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.3;
  }

  .specs-table-box {
    padding: 22px 14px;
    margin-bottom: 32px;
  }

  .specs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
  }

  .specs-table {
    min-width: 580px;
    font-size: 12.5px;
  }

  .specs-table th,
  .specs-table td {
    padding: 11px 12px;
  }

  .specs-table th:first-child,
  .specs-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 140px;
    width: 140px;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
  }

  .specs-table th:first-child {
    background: #f1f5f9;
  }

  .specs-table td:first-child {
    background: #f8fafc;
  }

  .guidelines-box {
    padding: 22px 16px;
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }

  .guidelines-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .guidelines-header h3 {
    font-size: 16px;
    line-height: 1.4;
  }

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

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

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

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

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

  .wa-floating-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .wa-floating-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: clamp(26px, 7.5vw, 38px);
    letter-spacing: -0.5px;
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .btn {
    white-space: normal;
    max-width: 100%;
    text-align: center;
  }

  .btn-cta-large {
    padding: 13px 20px !important;
    width: 100%;
    font-size: 15px;
  }

  .trust-item {
    font-size: 13px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .pricing-card,
  .pricing-card-dur {
    padding: 24px 18px;
  }

  .bundling-box,
  .specs-table-box,
  .guidelines-box {
    padding: 24px 16px;
  }

  .faq-summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-content {
    padding: 0 18px 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pricing-tabs-wrap {
    gap: 8px;
    margin-bottom: 20px;
  }

  .pricing-tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .pricing-tab-btn .tab-badge {
    font-size: 10px;
    padding: 3px 6px;
  }

  .slot-selector-card {
    padding: 14px 10px;
  }

  .slot-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .slot-pill {
    padding: 8px 4px;
    font-size: 11px;
  }

  .pricing-card-dur {
    padding: 20px 14px;
  }

  .dur-title {
    font-size: 17px;
  }

  .dur-price-val {
    font-size: 22px;
  }

  .dur-tweet-est {
    font-size: 11.5px;
    padding: 3px 8px;
  }

  .slot-rate-list {
    padding: 6px;
  }

  .slot-rate-item {
    font-size: 11px;
    padding: 5px 4px;
  }

  .bundling-box {
    padding: 20px 12px;
  }

  .bundling-card {
    padding: 18px 14px;
  }

  .bundling-title {
    font-size: 15px;
  }

  .bundling-price {
    font-size: 14px;
  }

  .specs-table-box {
    padding: 18px 10px;
  }

  .specs-table {
    min-width: 500px;
    font-size: 11.5px;
  }

  .specs-table th,
  .specs-table td {
    padding: 9px 10px;
  }

  .specs-table th:first-child,
  .specs-table td:first-child {
    min-width: 120px;
    width: 120px;
  }

  .guidelines-box {
    padding: 18px 12px;
  }

  .guideline-item {
    padding: 14px 12px;
  }

  .guideline-item h4 {
    font-size: 13.5px;
  }

  .guideline-item p {
    font-size: 12.5px;
  }
}

/* Hilangkan icon chevron sub-accordion pada desktop */
@media (min-width: 992px) {
  .col-chevron {
    display: none !important;
  }
}

/* ==========================================================================
   13. Blog Index & Insight Layout (Design Matching Project Aesthetic)
   ========================================================================== */

/* Blog Hero Header Section */
.blog-hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(29, 155, 240, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(0, 186, 124, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, #091322 0%, #0d1e38 50%, #08294a 100%);
  padding: 85px 0 75px;
  overflow: hidden;
  color: #ffffff;
}

.blog-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.blog-hero-breadcrumb a {
  color: #38bdf8;
  text-decoration: none;
}

.blog-hero-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin-bottom: 18px;
}

.blog-hero-title span {
  background: linear-gradient(135deg, #38bdf8 0%, #00ba7c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  line-height: 1.65;
  margin: 0;
}

/* Blog Content Container */
.blog-content-section {
  background: #ffffff;
  padding: 56px 0 80px;
}

.blog-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}

/* Section Header (Artikel dan insight pilihan + Line) */
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.blog-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-tag-badge {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--x-blue);
}

.blog-section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.blog-title-line {
  height: 3.5px;
  width: 70px;
  background: var(--grad-primary);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Article Card Row (Horizontal Layout like Screenshot) */
.blog-articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-card-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.blog-card-row:hover {
  border-color: var(--x-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-thumb {
  width: 240px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
  position: relative;
}

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

.blog-card-row:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.blog-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.blog-cat-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--x-blue);
  margin-bottom: 10px;
}

.blog-card-h3 {
  font-size: 18.5px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  transition: color var(--transition-fast);
}

.blog-card-row:hover .blog-card-h3 {
  color: var(--x-blue);
}

.blog-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 14px 0;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--x-blue);
  transition: transform var(--transition-fast);
}

.blog-card-row:hover .blog-card-link i {
  transform: translate(2px, -2px);
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-faint);
  margin-bottom: 14px;
}

/* ADVERTISEMENT Card (Exact Replica in Project Colors) */
.ad-card-box {
  background: linear-gradient(145deg, #09172e 0%, #0d284f 50%, #0369a1 100%);
  border-radius: 16px;
  padding: 34px 22px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.15);
}

.ad-card-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(0, 186, 124, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ad-icon-circle {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 22px;
}

.ad-card-title {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.ad-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin: 0 0 20px;
}

.btn-ad-pill {
  display: inline-block;
  padding: 10px 24px;
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.btn-ad-pill:hover {
  background: #f0fdf4;
  color: #00875a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 186, 124, 0.3);
}

/* Category List Widget */
.widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.cat-list-item a:hover {
  background: #eff6ff;
  border-color: var(--x-blue);
  color: var(--x-blue);
  padding-left: 18px;
}

.cat-count {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .blog-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .blog-sidebar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-card-row {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }

  .blog-card-thumb {
    width: 100%;
    height: 190px;
  }

  .blog-card-h3 {
    font-size: 16.5px;
  }

  .blog-hero-section {
    padding: 60px 0 50px;
  }

  .blog-section-title {
    font-size: 21px;
  }

  .blog-title-line {
    display: none;
  }
}

/* ==========================================================================
   14. Single Article Template Styles (Replica of Reference in Project Colors)
   ========================================================================== */

/* Article Hero Header */
.article-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, rgba(29, 155, 240, 0.35), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(0, 186, 124, 0.22), transparent 45%),
    linear-gradient(135deg, #091322 0%, #0d1e38 48%, #08294a 100%);
  color: #ffffff;
}

.article-hero .container {
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.article-breadcrumb a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: #ffffff;
}

.article-breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 16px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  background: rgba(29, 155, 240, 0.15);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.article-category i {
  color: #38bdf8;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.article-intro {
  max-width: 800px;
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.article-meta i {
  color: #38bdf8;
}

/* Article Layout & Content */
.article-section {
  background: #ffffff;
  padding: 50px 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}

.article-content {
  min-width: 0;
}

.article-featured-image {
  margin: 0 0 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  background: #f8fafc;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}

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

.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 38px 0 16px;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.article-body strong {
  color: var(--text-primary);
}

.article-body a {
  color: var(--x-blue);
  text-decoration: none;
  font-weight: 600;
}

.article-body a:hover {
  text-decoration: underline;
}

/* Checklist List */
.article-checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.article-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.65;
}

.article-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #00ba7c;
  font-weight: 900;
  font-size: 16px;
}

/* Highlight Box */
.article-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #eff6ff;
  border-left: 4px solid var(--x-blue);
  padding: 20px 22px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.highlight-icon {
  color: var(--x-blue);
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.article-highlight strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.article-highlight p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* Article Video */
.article-video {
  margin: 36px 0;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 22px;
}

.article-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--x-blue);
  margin-bottom: 14px;
}

.article-video-wrapper,
.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.wp-block-embed {
  margin: 32px 0;
  clear: both;
}

.article-video-wrapper iframe,
.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-block-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 13px;
}

.article-video-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}

/* In-Article CTA */
.article-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #09172e 0%, #0d2a52 50%, #0369a1 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(9, 23, 46, 0.2);
}

/* Hanya target label subtitle di dalam info CTA, BUKAN span tombol */
.article-cta>div>span,
.article-cta .article-cta-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  display: block;
  margin-bottom: 6px;
}

.article-cta h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.article-cta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.55;
}

/* Tombol CTA yang jelas, kontras tinggi, dan elegan */
.article-cta .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 26px !important;
  border-radius: var(--radius-full) !important;
  background: var(--grad-primary) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 18px rgba(29, 155, 240, 0.4) !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
}

.article-cta .btn:hover {
  background: linear-gradient(135deg, #00ba7c 0%, #1d9bf0 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 186, 124, 0.45) !important;
}

.article-cta .btn span {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline !important;
  margin-bottom: 0 !important;
  line-height: 1 !important;
}

.article-cta .btn i {
  font-size: 14px !important;
  color: #ffffff !important;
  transition: transform 0.2s ease;
  line-height: 1;
}

.article-cta .btn:hover i {
  transform: translate(2px, -2px);
}

/* FAQ Accordion in Article */
.faq-accordion {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--x-blue);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border-subtle);
  background: #f8fafc;
  color: var(--x-blue);
}

.faq-item[open] summary i {
  transform: rotate(45deg);
  color: var(--x-blue);
}

.faq-item summary i {
  transition: transform 0.25s ease;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-answer {
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-answer p {
  margin: 0;
}

/* ==========================================================================
   Table of Contents (Daftar Isi) Modern & Interactive
   ========================================================================== */
.article-toc-wrapper {
  margin: 28px 0 40px;
}

.article-toc-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(2, 132, 199, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-toc-box:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 25px -4px rgba(2, 132, 199, 0.12);
}

.article-toc-box summary.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.2s ease;
}

.article-toc-box summary.toc-header::-webkit-details-marker {
  display: none;
}

.article-toc-box:not([open]) summary.toc-header {
  border-bottom: none;
}

.article-toc-box summary.toc-header:hover {
  background: #f8fafc;
}

.toc-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.toc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
  flex-shrink: 0;
}

.toc-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.toc-count-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid #bae6fd;
}

.toc-toggle-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.article-toc-box summary.toc-header:hover .toc-toggle-indicator {
  color: #0284c7;
}

.toc-chevron {
  width: 18px;
  height: 18px;
  color: #0284c7;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-toc-box:not([open]) .toc-chevron {
  transform: rotate(-90deg);
}

.article-toc-box[open] .toc-chevron {
  transform: rotate(0deg);
}

.toc-toggle-text {
  font-size: 12px;
  font-weight: 700;
}

.article-toc-box[open] .toc-toggle-text::after {
  content: "Sembunyikan";
}

.article-toc-box:not([open]) .toc-toggle-text::after {
  content: "Tampilkan";
}

.toc-body {
  padding: 18px 20px 22px;
}

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

.toc-item {
  margin: 0;
  padding: 0;
}

.toc-item.toc-item-sub {
  margin-left: 24px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.toc-link:hover {
  background: #f0f9ff;
  border-color: #7dd3fc;
  color: #0284c7;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
  text-decoration: none;
}

.toc-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 11.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.toc-link:hover .toc-number {
  background: #0284c7;
  color: #ffffff;
}

.toc-text {
  flex: 1;
  min-width: 0;
}

.toc-arrow {
  color: #94a3b8;
  font-size: 19px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.toc-link:hover .toc-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #0284c7;
}

/* Heading Scroll Padding for smooth navigation */
.article-body h2,
.article-body h3,
.article-body h4,
.article-faq-accordion {
  scroll-margin-top: 96px;
}

/* Tags & Share */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 36px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.article-tags span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.article-tags a {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12.5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-tags a:hover {
  background: #eff6ff;
  border-color: var(--x-blue);
  color: var(--x-blue);
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 40px;
}

.article-share strong {
  font-size: 13.5px;
  color: var(--text-primary);
}

.article-share div {
  display: flex;
  gap: 8px;
}

.article-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.article-share a:hover {
  background: var(--x-blue);
  color: #ffffff;
  border-color: var(--x-blue);
  transform: translateY(-2px);
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
  display: block;
}

.sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.latest-item {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.latest-item:hover h3 {
  color: var(--x-blue);
}

.latest-image {
  width: 74px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.latest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-content h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-content span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--x-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sidebar-contact {
  background: linear-gradient(135deg, #09172e 0%, #0f2e5a 50%, #0284c7 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.sidebar-contact i.bi-chat-dots-fill {
  font-size: 32px;
  color: #38bdf8;
  display: inline-block;
  margin-bottom: 12px;
}

.sidebar-contact h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.sidebar-contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 18px;
}

.sidebar-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 18px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sidebar-contact a:hover {
  background: #f0fdf4;
  color: #00875a;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-hero {
    padding: 110px 0 50px;
  }

  .article-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .article-share {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .article-toc-box summary.toc-header {
    padding: 14px 18px;
  }

  .toc-title {
    font-size: 15px;
  }

  .toc-body {
    padding: 14px 14px 18px;
  }

  .toc-link {
    padding: 9px 12px;
    font-size: 13.5px;
  }
}


/* ==========================================================================
   15. SERVICE CATALOG PAGE STYLING (service/index.php)
   ========================================================================== */

/* Hero Section */
.service-hero-section {
  position: relative;
  background: linear-gradient(135deg, #091322 0%, #0d223f 50%, #08172c 100%);
  padding: 140px 0 80px;
  overflow: hidden;
  color: #ffffff;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 155, 240, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 186, 124, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.service-breadcrumb a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-breadcrumb a:hover {
  color: #ffffff;
}

.service-breadcrumb i {
  font-size: 10px;
  opacity: 0.5;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(29, 155, 240, 0.15);
  border: 1px solid rgba(29, 155, 240, 0.35);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.service-hero-title {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  max-width: 860px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.service-hero-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 36px;
}

/* Stats Bar */
.service-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  margin-top: 20px;
}

.service-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(29, 155, 240, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-stat-text strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.service-stat-text span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* Platform Filter Tabs */
.service-filter-section {
  padding: 40px 0 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 72px;
  z-index: 40;
}

.service-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.service-filter-pills::-webkit-scrollbar {
  display: none;
}

.service-pill-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.service-pill-btn:hover {
  border-color: var(--x-blue);
  color: var(--x-blue);
  background: rgba(29, 155, 240, 0.04);
}

.service-pill-btn.active {
  background: var(--x-blue);
  border-color: var(--x-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(29, 155, 240, 0.35);
}

/* Service Main Section */
.service-catalog-section {
  padding: 60px 0 90px;
  background: #f8fafc;
}

.service-section-header {
  margin-bottom: 40px;
}

.service-section-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--x-blue);
  display: block;
  margin-bottom: 8px;
}

.service-section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}

/* Service Cards Grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.service-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(29, 155, 240, 0.12);
  border-color: rgba(29, 155, 240, 0.4);
}

.service-card-item.featured::before {
  content: 'POPULER #1';
  position: absolute;
  top: 18px;
  right: -32px;
  transform: rotate(45deg);
  background: var(--grad-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 34px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}

.service-card-icon.icon-twitter {
  background: linear-gradient(135deg, #1d9bf0 0%, #0c7abf 100%);
}

.service-card-icon.icon-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.service-card-icon.icon-tiktok {
  background: linear-gradient(135deg, #010101 0%, #25f4ee 50%, #fe2c55 100%);
}

.service-card-icon.icon-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.service-card-icon.icon-pr {
  background: linear-gradient(135deg, #00ba7c 0%, #008f5d 100%);
}

.service-card-icon.icon-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
}

.service-card-icon.icon-threads {
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
}

.service-card-icon.icon-marketplace {
  background: linear-gradient(135deg, #ee4d2d 0%, #ff5722 100%);
}

.service-card-icon.icon-lemon8 {
  background: linear-gradient(135deg, #ffe01b 0%, #facc15 100%);
  color: #0f172a !important;
}

.service-card-icon.icon-campaign {
  background: linear-gradient(135deg, #7856ff 0%, #5b21b6 100%);
}

.service-card-icon.icon-digital {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.service-card-icon.icon-support {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.service-platform-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.service-card-h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.service-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-title-link:hover {
  color: var(--x-blue);
}

.service-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: #00ba7c;
  font-size: 14px;
  flex-shrink: 0;
}

.service-card-bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-price-wrap span {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
}

.service-price-wrap strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-primary);
}

.service-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: var(--x-blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.service-order-btn:hover {
  background: var(--x-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 155, 240, 0.35);
}

/* Process Section */
.service-process-section {
  padding: 80px 0;
  background: #f8fafc;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.service-process-step {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: transform 0.2s ease;
}

.service-process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(29, 155, 240, 0.1);
  color: var(--x-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-process-step h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Why Us Section */
.service-why-section {
  padding: 80px 0;
  background: #ffffff;
}

.service-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-why-box {
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px;
  background: #ffffff;
  transition: all 0.2s ease;
}

.service-why-box:hover {
  border-color: rgba(0, 186, 124, 0.4);
  box-shadow: 0 10px 25px rgba(0, 186, 124, 0.08);
  transform: translateY(-3px);
}

.service-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 186, 124, 0.12);
  color: #00ba7c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-why-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-why-box p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.service-search-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  margin-top: 14px;
}

.service-search-box input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-size: 13.5px;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.service-search-box input:focus {
  border-color: var(--x-blue);
  box-shadow: 0 0 0 3px rgba(29, 155, 240, 0.15);
}

.service-search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

.service-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed var(--border-highlight);
  display: none;
}

.service-no-results i {
  font-size: 42px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.service-no-results h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.service-no-results p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* Strict mobile responsiveness & zero horizontal overflow */
.service-page-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 1199px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991px) {
  .service-hero-section {
    padding: 100px 0 50px;
  }

  .service-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

@media (max-width: 768px) {
  /* Prevent pseudo elements from overflowing viewport on mobile */
  .service-hero-section::before,
  .service-hero-section::after {
    display: none;
  }

  .service-filter-section {
    padding: 20px 0 16px;
    top: 60px;
  }

  .service-filter-pills {
    padding: 4px 2px 10px;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .service-card-item {
    padding: 24px 20px;
  }

  .cta-banner {
    padding: 36px 20px !important;
  }

  .cta-banner .btn {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-stats-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

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

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

  .service-hero-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .service-hero-desc {
    font-size: 14.5px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   16. SINGLE SERVICE PAGE STYLING (service/[slug].php)
   ========================================================================== */

.single-service-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Single Service Hero */
.single-service-hero {
  position: relative;
  background: radial-gradient(circle at 85% 18%, rgba(29, 155, 240, 0.28) 0%, transparent 50%),
              radial-gradient(circle at 15% 82%, rgba(0, 186, 124, 0.18) 0%, transparent 45%),
              linear-gradient(135deg, #091322 0%, #0d223f 50%, #08172c 100%);
  padding: 135px 0 65px;
  color: #ffffff;
  overflow: hidden;
}

.single-service-hero .container {
  position: relative;
  z-index: 2;
}

.single-service-top-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(29, 155, 240, 0.15);
  border: 1px solid rgba(29, 155, 240, 0.35);
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-service-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #facc15;
  font-weight: 700;
}

.single-service-rating span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 12.5px;
}

.single-service-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 900px;
  letter-spacing: -0.02em;
}

.single-service-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single-service-lead {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 28px;
}

.single-service-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Service Main Grid Layout */
.single-service-layout-section {
  padding: 60px 0 90px;
  background: #f8fafc;
}

.single-service-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.single-service-content {
  min-width: 0;
}

/* Service Card Box in Content */
.service-content-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 32px;
}

.service-content-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-content-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 28px 0 14px;
}

.service-content-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Deliverables Grid */
.service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0 12px;
}

.service-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.service-deliverable-item:hover {
  background: #ffffff;
  border-color: rgba(29, 155, 240, 0.4);
  box-shadow: 0 6px 18px rgba(29, 155, 240, 0.08);
  transform: translateY(-2px);
}

.service-deliverable-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 186, 124, 0.12);
  color: #00ba7c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-deliverable-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-deliverable-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Workflow Steps inside service */
.service-workflow-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.service-workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
}

.service-workflow-number {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--x-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-workflow-info h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-workflow-info p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Sidebar Styles */
.single-service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-sidebar-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.service-sidebar-order-box {
  background: linear-gradient(135deg, #09172e 0%, #0d2a52 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(9, 23, 46, 0.2);
}

.service-sidebar-order-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-sidebar-order-box p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 22px;
}

.service-sidebar-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-sidebar-benefits li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-sidebar-benefits li i {
  color: #38bdf8;
  font-size: 14px;
}

.service-related-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.service-related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-related-item:hover {
  background: #ffffff;
  border-color: var(--x-blue);
  color: var(--x-blue);
  transform: translateX(3px);
}

.service-related-item i {
  font-size: 12px;
  color: var(--text-muted);
}

/* Mobile Responsiveness for Single Service */
@media (max-width: 991px) {
  .single-service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .single-service-hero {
    padding: 105px 0 50px;
  }

  .single-service-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .service-content-card {
    padding: 24px 18px;
  }

  .service-deliverables-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .single-service-hero-actions .btn {
    width: 100%;
  }

  .single-service-title {
    font-size: 24px;
  }

  .single-service-lead {
    font-size: 14.5px;
  }
}

/* Landing Page Grid & Mockup Card for Standalone Service Pages */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-hero-mockup-card {
  background: linear-gradient(135deg, #0d1e38 0%, #132a4e 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.service-hero-mockup-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(29, 155, 240, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.service-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-mockup-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #38bdf8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #00ba7c;
  background: rgba(0, 186, 124, 0.15);
  border: 1px solid rgba(0, 186, 124, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.service-mockup-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.service-mockup-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(29, 155, 240, 0.15);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.service-mockup-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-metric-box strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.service-metric-box span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}

.service-mockup-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-mockup-check-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-mockup-check-list li i {
  color: #00ba7c;
  font-size: 14px;
  flex-shrink: 0;
}